2003/12/29 03:25:45
[org.ibex.core.git] / src / org / xwt / translators / Freetype.java
index d9c6904..3bff602 100644 (file)
@@ -21,7 +21,7 @@ public class Freetype {
 
     public void loadFontByteStream(Res res) {
         try {
-            Log.log(this, "loading font " + res);
+            Log.info(this, "loading font " + res);
             loadedStream = res;
             InputStream is = res.getInputStream();
             byte[] fontstream = InputStreamToByteArray.convert(is);
@@ -34,7 +34,7 @@ public class Freetype {
             vm.execute();
             if(vm.getState() == Runtime.DONE) throw new Error("Freetype VM exited: " + vm.exitStatus());
         } catch (Exception e) {
-            Log.log(this, e);
+            Log.info(this, e);
         }
     }
 
@@ -59,7 +59,7 @@ public class Freetype {
             vm.copyin(addr, glyph.data, glyph.width * glyph.height);
             
         } catch (Exception e) {
-            Log.log(this, e);
+            Log.info(this, e);
         }
     }
 }