this does not work
[org.ibex.core.git] / src / org / ibex / Picture.java
index cdd33f0..afde3bb 100644 (file)
@@ -3,7 +3,7 @@ package org.ibex;
 import java.io.*;
 import org.ibex.js.*;
 import org.ibex.util.*;
-import org.xwt.translators.*;
+import org.ibex.translators.*;
 
 /** 
  *    The in-memory representation of a PNG or GIF image. It is
@@ -40,8 +40,8 @@ public class Picture {
                 InputStream in = null;
                 try {
                     in = b == null ? Stream.getInputStream(stream) : b.getImage();
-                } catch (IOException e) { Log.error(Picture.class, stream);
-                } catch (JSExn e) { Log.error(Picture.class, stream);
+                } catch (IOException e) { Log.error(Picture.class, e);
+                } catch (JSExn e) { Log.error(Picture.class, e);
                 }
                 if (in == null) { Log.warn(Picture.class, "couldn't load image for stream " + stream); return; }
                 try {