Fixes #677 - Logging of ignore() events now show as "Ignored Exception"
This commit is contained in:
parent
a5dc01bbb1
commit
2dfb5f463a
|
@ -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
|
||||
|
|
|
@ -206,7 +206,7 @@ public class LoggerLog extends AbstractLogger
|
|||
{
|
||||
if (Log.isIgnored())
|
||||
{
|
||||
warn(Log.IGNORED, ignored);
|
||||
debug(Log.IGNORED, ignored);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue