Skip to content

Commit 6a77d4e

Browse files
committed
Move debug log level example further down, so it actually works
When you uncommented the existing debug log level example it had no effect because the default level (informative) is set further down in the config file and therefore took priority.
1 parent 0234033 commit 6a77d4e

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

src/resources/projectMSDL.properties.in

+5-6
Original file line numberDiff line numberDiff line change
@@ -102,11 +102,6 @@ projectM.aspectCorrectionEnabled = true
102102
# For detailed information on how to configure logging, please refer to the POCO documentation:
103103
# https://docs.pocoproject.org/current/Poco.Util.LoggingConfigurator.html
104104

105-
# Set log level to debug for all components
106-
#logging.loggers.root.level = debug
107-
108-
109-
110105
### Logging configuration
111106

112107
# Verbose log format, includes process/thread ID, source etc.
@@ -145,9 +140,13 @@ logging.channels.async.class = AsyncChannel
145140
logging.channels.async.channel = split
146141

147142
# Default logging settings.
148-
logging.loggers.root.level = information
149143
logging.loggers.root.channel = async
150144

145+
# Set log level to debug for all components
146+
#logging.loggers.root.level = debug
147+
logging.loggers.root.level = information
148+
149+
151150
# You can configure log levels, channels etc. for each message source (logger) individually.
152151
# See https://docs.pocoproject.org/current/Poco.Util.LoggingConfigurator.html for details.
153152
# Example:

0 commit comments

Comments
 (0)