Removed debug logging.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@943 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-02-06 01:47:08 +00:00
parent 62c466b95f
commit 3042e9c2ad
@@ -1,5 +1,5 @@
//
// $Id: ResourceManager.java,v 1.7 2002/01/16 03:00:06 mdb Exp $
// $Id: ResourceManager.java,v 1.8 2002/02/06 01:47:08 mdb Exp $
package com.threerings.resource;
@@ -266,7 +266,6 @@ public class ResourceManager
try {
burl = new URL(resourceURL, path);
Log.info("Resolving resource: " + burl);
// make sure the cache directory exists for this set
createCacheDirectory(setName);
@@ -274,8 +273,6 @@ public class ResourceManager
// compute the path to the cache file for this bundle
File cfile = new File(genCachePath(setName, path));
Log.info("Cached to " + cfile.getPath());
// download the resource bundle from the specified URL
InputStream in = burl.openStream();
FileOutputStream out = new FileOutputStream(cfile);