preliminary core conversion
[org.ibex.core.git] / src / org / ibex / util / Log.java
index 70f1054..467a339 100644 (file)
@@ -208,7 +208,8 @@ public class Log {
         logstream.println(classname + colorize(levelcolor, bright, str));
     }
 
-    public static void recursiveLog(String indent, String name, Object o) throws JSExn {
+    // FIXME: Update for new api
+    /*public static void recursiveLog(String indent, String name, Object o) throws JSExn {
         if (!name.equals("")) name += " : ";
 
         if (o == null) {
@@ -235,6 +236,6 @@ public class Log {
             JS.log(indent + name + o);
 
         }
-    }
+    }*/
 
 }