aboutsummaryrefslogtreecommitdiff
path: root/consul/configuration/chat/synapse/log.yaml
diff options
context:
space:
mode:
authorQuentin <quentin@deuxfleurs.fr>2019-06-01 16:02:49 +0200
committerQuentin Dufour <quentin@deuxfleurs.fr>2019-07-11 09:33:07 +0200
commit61d009f18d5886db8b22ae41e04bb41a4ba2fddb (patch)
treee44bb326caf3107653c7a48749527cfd77f02cf2 /consul/configuration/chat/synapse/log.yaml
downloadinfrastructure-61d009f18d5886db8b22ae41e04bb41a4ba2fddb.tar.gz
infrastructure-61d009f18d5886db8b22ae41e04bb41a4ba2fddb.zip
Initial commit
Diffstat (limited to 'consul/configuration/chat/synapse/log.yaml')
-rw-r--r--consul/configuration/chat/synapse/log.yaml41
1 files changed, 41 insertions, 0 deletions
diff --git a/consul/configuration/chat/synapse/log.yaml b/consul/configuration/chat/synapse/log.yaml
new file mode 100644
index 0000000..eb69d8f
--- /dev/null
+++ b/consul/configuration/chat/synapse/log.yaml
@@ -0,0 +1,41 @@
+
+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:
+ file:
+ class: logging.handlers.RotatingFileHandler
+ formatter: precise
+ filename: /var/log/matrix-synapse/homeserver.log
+ maxBytes: 10485760
+ backupCount: 3
+ filters: [context]
+ level: WARN
+ console:
+ class: logging.StreamHandler
+ formatter: precise
+ level: WARN
+
+loggers:
+ synapse:
+ level: INFO
+
+ synapse.storage.SQL:
+ level: INFO
+
+ ldap3:
+ level: DEBUG
+ ldap_auth_provider:
+ level: DEBUG
+
+root:
+ level: INFO
+ handlers: [file, console]