478372 - JavaUtilLog setSourceClass and setSourceMethod
Log ignored only if log level is all turn off java util logging in embedded examples
This commit is contained in:
parent
697b0cccf2
commit
540b33e64c
|
@ -1,5 +1,5 @@
|
|||
org.eclipse.jetty.util.log.class=org.eclipse.jetty.util.log.JavaUtilLog
|
||||
org.eclipse.jetty.util.log.javautil.PROPERTIES=java-util-logging.properties
|
||||
#org.eclipse.jetty.util.log.class=org.eclipse.jetty.util.log.JavaUtilLog
|
||||
#org.eclipse.jetty.util.log.javautil.PROPERTIES=java-util-logging.properties
|
||||
#org.eclipse.jetty.util.log.SOURCE=true
|
||||
org.eclipse.jetty.LEVEL=INFO
|
||||
org.eclipse.jetty.STACKS=true
|
||||
|
|
|
@ -255,7 +255,7 @@ public class JavaUtilLog extends AbstractLogger
|
|||
|
||||
public void ignore(Throwable ignored)
|
||||
{
|
||||
if (_logger.isLoggable(Level.WARNING))
|
||||
if (_logger.isLoggable(Level.ALL))
|
||||
log(Level.WARNING,Log.IGNORED,ignored);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue