From 76aaa7722a4f644ee8b37beda37244184c47a7ea Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Mon, 1 Apr 2002 20:47:28 +0000 Subject: [PATCH] Report that we're downloading a bundle when we set out to do so. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1169 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/resource/ResourceManager.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/java/com/threerings/resource/ResourceManager.java b/src/java/com/threerings/resource/ResourceManager.java index 098ba1bce..008271331 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.12 2002/04/01 16:49:26 mdb Exp $ +// $Id: ResourceManager.java,v 1.13 2002/04/01 20:47:28 mdb Exp $ package com.threerings.resource; @@ -321,6 +321,7 @@ public class ResourceManager // read the data from the URL into the cache file if (readData) { + Log.info("Downloading bundle [url=" + burl + "]."); InputStream in = ucon.getInputStream(); FileOutputStream out = new FileOutputStream(cfile); // pipe the input stream into the output stream