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

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

log all jetty warns as errors

parent 7feaadbd
No related branches found
No related tags found
No related merge requests found
......@@ -102,10 +102,11 @@ public class I2PLogger implements Logger
public void warn(String msg, Throwable th)
{
if (th instanceof RuntimeException || th instanceof Error)
// This doesn't cover ClassNotFoundException, etc.
//if (th instanceof RuntimeException || th instanceof Error)
_log.error(msg, th);
else
_log.warn(msg,th);
//else
// _log.warn(msg,th);
}
private void format(String msg, Object arg0, Object arg1)
......
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