Return Level.OFF is log level is null

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@683672 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Shalin Shekhar Mangar 2008-08-07 18:38:42 +00:00
parent 495e372bd5
commit 662980fd8a
1 changed files with 1 additions and 1 deletions

View File

@ -233,7 +233,7 @@ public final class LogLevelSelection extends HttpServlet {
level = l; level = l;
} }
} }
return level; return level != null ? level : Level.OFF;
} }
private static class LogWrapper private static class LogWrapper