Fixes #677 - Logging of ignore() events now show as "Ignored Exception"

This commit is contained in:
Joakim Erdfelt 2016-06-29 15:08:44 -07:00
parent a5dc01bbb1
commit 2dfb5f463a
2 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ import org.eclipse.jetty.util.annotation.ManagedAttribute;
public class Log
{
public final static String EXCEPTION= "EXCEPTION ";
public final static String IGNORED= "IGNORED ";
public final static String IGNORED= "IGNORED EXCEPTION ";
/**
* Logging Configuration Properties

View File

@ -206,7 +206,7 @@ public class LoggerLog extends AbstractLogger
{
if (Log.isIgnored())
{
warn(Log.IGNORED, ignored);
debug(Log.IGNORED, ignored);
}
}