1 files changed, 6 insertions, 0 deletions
diff --git a/docker/conf/log.config b/docker/conf/log.config
index d9e85aa533..90b5179838 100644
--- a/docker/conf/log.config
+++ b/docker/conf/log.config
@@ -49,11 +49,17 @@ handlers:
class: logging.StreamHandler
formatter: precise
+{% if not SYNAPSE_LOG_SENSITIVE %}
+{#
+ If SYNAPSE_LOG_SENSITIVE is unset, then override synapse.storage.SQL to INFO
+ so that DEBUG entries (containing sensitive information) are not emitted.
+#}
loggers:
synapse.storage.SQL:
# beware: increasing this to DEBUG will make synapse log sensitive
# information such as access tokens.
level: INFO
+{% endif %}
root:
level: {{ SYNAPSE_LOG_LEVEL or "INFO" }}
|