Skip to content

Commit

Permalink
server: use log level defined in the configuration file
Browse files Browse the repository at this point in the history
  • Loading branch information
pfurio committed Jul 2, 2021
1 parent dee6de3 commit 1523ef8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ private static String initLogger(java.nio.file.Path installationPath) {
.addAttribute("level", level));
configurationBuilder.add(appender);

configurationBuilder.add(configurationBuilder.newRootLogger(Level.DEBUG)
configurationBuilder.add(configurationBuilder.newRootLogger(level)
.add(configurationBuilder.newAppenderRef("rolling"))
.add(configurationBuilder.newAppenderRef("stdout")));

Expand Down

0 comments on commit 1523ef8

Please sign in to comment.