diff --git a/core/java/src/net/i2p/util/Log.java b/core/java/src/net/i2p/util/Log.java index 725b389e0ee21a550354103ab3542ed948824df0..b22325adb4d213f809f5f3d2d74824e097d6dfd8 100644 --- a/core/java/src/net/i2p/util/Log.java +++ b/core/java/src/net/i2p/util/Log.java @@ -108,8 +108,8 @@ public class Log { public void log(int priority, String msg, Throwable t) { // Boost the priority of NPE and friends so they get seen and reported - if (t != null && t instanceof RuntimeException && !(t instanceof IllegalArgumentException)) - priority = CRIT; + //if (t != null && t instanceof RuntimeException && !(t instanceof IllegalArgumentException)) + // priority = CRIT; if (priority >= _minPriority) { _manager.addRecord(new LogRecord(_class, _name, Thread.currentThread().getName(), priority,