add printStackTrace() method to Log.java
[org.ibex.util.git] / src / org / ibex / util / Log.java
index 6b42ea2..175a8df 100644 (file)
@@ -122,6 +122,14 @@ public class Log {
     }
 
     private static String lastClassName = null;
+
+    public static void printStackTrace(Object o, int level) {
+        try {
+            throw new Exception();
+        } catch (Exception e) {
+            log(o, e, level);
+        }
+    }
     private static synchronized void log(Object o, Object message, int level) {
         if (level < Log.level) return;
         if (firstMessage && !logDates) {