Skip to content
Snippets Groups Projects
Commit fe2d876e authored by Richard van der Hoff's avatar Richard van der Hoff Committed by Amber Brown
Browse files

Increase default log level for docker image to INFO. (#5547)

Fixes #3370.
parent f817fc9a
No related branches found
No related tags found
No related merge requests found
Increase default log level for docker image to INFO. It can still be changed by editing the generated log.config file.
...@@ -16,14 +16,11 @@ handlers: ...@@ -16,14 +16,11 @@ handlers:
filters: [context] filters: [context]
loggers: loggers:
synapse:
level: {{ SYNAPSE_LOG_LEVEL or "WARNING" }}
synapse.storage.SQL: synapse.storage.SQL:
# beware: increasing this to DEBUG will make synapse log sensitive # beware: increasing this to DEBUG will make synapse log sensitive
# information such as access tokens. # information such as access tokens.
level: {{ SYNAPSE_LOG_LEVEL or "WARNING" }} level: INFO
root: root:
level: {{ SYNAPSE_LOG_LEVEL or "WARNING" }} level: {{ SYNAPSE_LOG_LEVEL or "INFO" }}
handlers: [console] handlers: [console]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment