I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit f9c2624b authored by zzz's avatar zzz
Browse files

disable log priority override for now

parent 8bcfdc3c
No related branches found
No related tags found
No related merge requests found
......@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment