summary refs log tree commit diff
path: root/contrib/docker/conf/log.config
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/docker/conf/log.config')
-rw-r--r--contrib/docker/conf/log.config6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/docker/conf/log.config b/contrib/docker/conf/log.config
index b5c907c4f9..1851995802 100644
--- a/contrib/docker/conf/log.config
+++ b/contrib/docker/conf/log.config
@@ -17,13 +17,13 @@ handlers:
 
 loggers:
     synapse:
-        level: INFO
+        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: INFO
+        level: {{ SYNAPSE_LOG_LEVEL or "WARNING" }}
 
 root:
-    level: INFO
+    level: {{ SYNAPSE_LOG_LEVEL or "WARNING" }}
     handlers: [console]