summary refs log tree commit diff
path: root/docker/conf/log.config
diff options
context:
space:
mode:
authorNeil Johnson <neil@matrix.org>2018-08-08 13:47:07 +0100
committerNeil Johnson <neil@matrix.org>2018-08-08 13:47:07 +0100
commit2b5baebeba1febc1eac9e7926082c46bf9fa23cd (patch)
tree521a31f1dd9619b30b17af4c4abc3cf19c5db3a0 /docker/conf/log.config
parentMerge branch 'neilj/mau_tracker' of github.com:matrix-org/synapse into neilj/... (diff)
parentMerge pull request #3633 from matrix-org/neilj/mau_tracker (diff)
downloadsynapse-2b5baebeba1febc1eac9e7926082c46bf9fa23cd.tar.xz
Merge branch 'develop' of github.com:matrix-org/synapse into neilj/disable_hs
Diffstat (limited to 'docker/conf/log.config')
-rw-r--r--docker/conf/log.config29
1 files changed, 29 insertions, 0 deletions
diff --git a/docker/conf/log.config b/docker/conf/log.config
new file mode 100644
index 0000000000..1851995802
--- /dev/null
+++ b/docker/conf/log.config
@@ -0,0 +1,29 @@
+version: 1
+
+formatters:
+  precise:
+   format: '%(asctime)s - %(name)s - %(lineno)d - %(levelname)s - %(request)s- %(message)s'
+
+filters:
+  context:
+    (): synapse.util.logcontext.LoggingContextFilter
+    request: ""
+
+handlers:
+  console:
+    class: logging.StreamHandler
+    formatter: precise
+    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" }}
+
+root:
+    level: {{ SYNAPSE_LOG_LEVEL or "WARNING" }}
+    handlers: [console]