From 3042e9c2ad6671a7da0f0a75f334e9a171993884 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Wed, 6 Feb 2002 01:47:08 +0000 Subject: [PATCH] Removed debug logging. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@943 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/resource/ResourceManager.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/java/com/threerings/resource/ResourceManager.java b/src/java/com/threerings/resource/ResourceManager.java index f69531e13..5f5cff044 100644 --- a/src/java/com/threerings/resource/ResourceManager.java +++ b/src/java/com/threerings/resource/ResourceManager.java @@ -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);