set debug from boolean
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@390 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
parent
bc1bd1713a
commit
109df118a4
|
@ -27,7 +27,7 @@ public class StdErrLog implements Logger
|
|||
{
|
||||
private static DateCache _dateCache;
|
||||
|
||||
private static boolean _debug = System.getProperty("org.eclipse.jetty.util.log.DEBUG",null)!=null;
|
||||
private static boolean _debug = Boolean.parseBoolean(System.getProperty("org.eclipse.jetty.util.log.DEBUG","false"));
|
||||
private String _name;
|
||||
private boolean _hideStacks=false;
|
||||
|
||||
|
|
Loading…
Reference in New Issue