Skip to content

Commit

Permalink
Merge pull request #794 from dmlloyd/log-init
Browse files Browse the repository at this point in the history
[#790] Allow all log levels to be configured, not just the root
  • Loading branch information
dmlloyd authored Feb 7, 2019
2 parents 146baad + 15c538b commit 74bc7e6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public Level getMinimumLevelOf(final String loggerName) {
}

public Level getLevelOf(final String loggerName) {
return Level.INFO;
return loggerName.isEmpty() ? Level.ALL : null;
}

public Handler[] getHandlersOf(final String loggerName) {
Expand Down

0 comments on commit 74bc7e6

Please sign in to comment.