Skip to content

Commit

Permalink
Reduce default logging level to DEBUG due to verbosity of PebbleTempl…
Browse files Browse the repository at this point in the history
…ates
  • Loading branch information
doug-hoffman committed Jan 3, 2023
1 parent f2b1937 commit f4254d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/io/github/dsheirer/log/ApplicationLog.java
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public void start()
mRollingFileAppender.start();

Logger logger = loggerContext.getLogger(Logger.ROOT_LOGGER_NAME);
((ch.qos.logback.classic.Logger)logger).setLevel(Level.ALL);
((ch.qos.logback.classic.Logger)logger).setLevel(Level.DEBUG);
((ch.qos.logback.classic.Logger)logger).addAppender(mRollingFileAppender);

// StatusPrinter.print(loggerContext);
Expand Down

0 comments on commit f4254d8

Please sign in to comment.