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:
Greg Wilkins 2009-06-12 23:36:49 +00:00
parent bc1bd1713a
commit 109df118a4
1 changed files with 1 additions and 1 deletions

View File

@ -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;