mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
Increase default log level for docker image to INFO. (#5547)
Fixes #3370.
This commit is contained in:
parent
f817fc9ad5
commit
fe2d876e2a
1
changelog.d/5547.feature
Normal file
1
changelog.d/5547.feature
Normal file
@ -0,0 +1 @@
|
|||||||
|
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:
|
|||||||
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]
|
||||||
|
Loading…
Reference in New Issue
Block a user