diff options
author | Jiri Vanek <[email protected]> | 2013-09-25 18:50:18 +0200 |
---|---|---|
committer | Jiri Vanek <[email protected]> | 2013-09-25 18:50:18 +0200 |
commit | 19e74fe5dacd03e0cb5582f840e15262e39fe24f (patch) | |
tree | 38ffc4f47f7641f8d20ba0e0e8a97a97ffb1db64 /plugin/icedteanp/java/netscape/javascript/JSRunnable.java | |
parent | fcd5c4c69fc5ea84b04f309eb40e295eab921fd8 (diff) |
Introduced logging bottleneck
Diffstat (limited to 'plugin/icedteanp/java/netscape/javascript/JSRunnable.java')
-rw-r--r-- | plugin/icedteanp/java/netscape/javascript/JSRunnable.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugin/icedteanp/java/netscape/javascript/JSRunnable.java b/plugin/icedteanp/java/netscape/javascript/JSRunnable.java index df245a7..8b3d764 100644 --- a/plugin/icedteanp/java/netscape/javascript/JSRunnable.java +++ b/plugin/icedteanp/java/netscape/javascript/JSRunnable.java @@ -39,6 +39,7 @@ package netscape.javascript; +import net.sourceforge.jnlp.util.logging.OutputController; import sun.applet.PluginDebug; /** @@ -66,7 +67,7 @@ public class JSRunnable implements Runnable { } } catch (Throwable t) { PluginDebug.debug(t.toString()); - t.printStackTrace(System.err); + OutputController.getLogger().log(OutputController.Level.ERROR_ALL,t); } } } |