From 31dad51099a0edca8c98bda49fb17ede3ac11d3e Mon Sep 17 00:00:00 2001 From: adam Date: Sat, 1 Mar 2008 05:51:59 +0000 Subject: [PATCH] add printStackTrace() method to Log.java darcs-hash:20080301055159-5007d-f68e1f55b5f7abc90d970c34dfad417a03c479cc.gz --- src/org/ibex/util/Log.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/org/ibex/util/Log.java b/src/org/ibex/util/Log.java index 6b42ea2..175a8df 100644 --- a/src/org/ibex/util/Log.java +++ b/src/org/ibex/util/Log.java @@ -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) { -- 1.7.10.4