summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2020-03-16 14:55:04 +0000
committerAndrew Morgan <andrew@amorgan.xyz>2020-03-16 14:55:04 +0000
commitdb0b6a84399c8c26882ec767174000a3d535a801 (patch)
treee24298c50f42dfd7295da0af3a3cde821e307609 /synapse
parentClean up the AUTHORS file (#6215) (diff)
parentFix logging config for the docker image (#6197) (diff)
downloadsynapse-db0b6a84399c8c26882ec767174000a3d535a801.tar.xz
Fix logging config for the docker image (#6197)
* commit '560c12226':
  Fix logging config for the docker image (#6197)
Diffstat (limited to 'synapse')
-rw-r--r--synapse/config/logger.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/synapse/config/logger.py b/synapse/config/logger.py
index d609ec111b..be92e33f93 100644
--- a/synapse/config/logger.py
+++ b/synapse/config/logger.py
@@ -68,9 +68,6 @@ handlers:
         filters: [context]
 
 loggers:
-    synapse:
-        level: INFO
-
     synapse.storage.SQL:
         # beware: increasing this to DEBUG will make synapse log sensitive
         # information such as access tokens.
@@ -79,6 +76,8 @@ loggers:
 root:
     level: INFO
     handlers: [file, console]
+
+disable_existing_loggers: false
 """
 )