diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2019-06-25 05:38:38 +0100 |
---|---|---|
committer | Amber Brown <hawkowl@atleastfornow.net> | 2019-06-25 14:38:38 +1000 |
commit | fe2d876e2a3c970c70ca4e7c1508624279cf4ed5 (patch) | |
tree | 2d96b26fbcc074f8ba3b1aac5c69147fdd328103 /docker | |
parent | Update docker image to use Python 3.7. (#5546) (diff) | |
download | synapse-fe2d876e2a3c970c70ca4e7c1508624279cf4ed5.tar.xz |
Increase default log level for docker image to INFO. (#5547)
Fixes #3370.
Diffstat (limited to 'docker')
-rw-r--r-- | docker/conf/log.config | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/docker/conf/log.config b/docker/conf/log.config index 1851995802..895e45d20b 100644 --- a/docker/conf/log.config +++ b/docker/conf/log.config @@ -16,14 +16,11 @@ handlers: filters: [context] loggers: - synapse: - level: {{ SYNAPSE_LOG_LEVEL or "WARNING" }} - synapse.storage.SQL: # beware: increasing this to DEBUG will make synapse log sensitive # information such as access tokens. - level: {{ SYNAPSE_LOG_LEVEL or "WARNING" }} + level: INFO root: - level: {{ SYNAPSE_LOG_LEVEL or "WARNING" }} + level: {{ SYNAPSE_LOG_LEVEL or "INFO" }} handlers: [console] |