Skip to content

Commit

Permalink
LOGMGR-24: Make sure that "ALL" and "OFF" levels are included in the …
Browse files Browse the repository at this point in the history
…initial list
  • Loading branch information
dmlloyd committed Aug 30, 2010
1 parent e70e9a7 commit 9f1033d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/java/org/jboss/logmanager/LogManager.java
Expand Up @@ -68,13 +68,15 @@ public Void run() {
Level.WARN,
Level.ERROR,
Level.FATAL,
java.util.logging.Level.ALL,
java.util.logging.Level.FINEST,
java.util.logging.Level.FINER,
java.util.logging.Level.FINE,
java.util.logging.Level.INFO,
java.util.logging.Level.CONFIG,
java.util.logging.Level.WARNING,
java.util.logging.Level.SEVERE
java.util.logging.Level.SEVERE,
java.util.logging.Level.OFF
)));
}
}
Expand Down

0 comments on commit 9f1033d

Please sign in to comment.