2003/12/29 03:25:43
[org.ibex.core.git] / src / org / xwt / Picture.java
index c4cb039..4d563e0 100644 (file)
@@ -54,7 +54,7 @@ public class Picture {
                 }
         
                 // could not find image
-                if (in == null) { Log.log(Picture.class, "couldn't load image for resource " + r); return; }
+                if (in == null) { Log.info(Picture.class, "couldn't load image for resource " + r); return; }
 
                 try {
                     PushbackInputStream pbis = new PushbackInputStream(in);
@@ -68,8 +68,8 @@ public class Picture {
                     p.isLoaded = true;
                     Scheduler.add(callback);
                 } catch (Exception e) {
-                    Log.log(this, "exception while loading image");
-                    Log.log(this, e);
+                    Log.info(this, "exception while loading image");
+                    Log.info(this, e);
                 }
             } }.start();