diff options
author | Richard van der Hoff <richard@matrix.org> | 2018-12-20 11:35:23 +0000 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2018-12-20 11:35:23 +0000 |
commit | d3c9c562c60133a2263b36376aa854064630589d (patch) | |
tree | 18d0efeecdbc24f33367f87a2a86aa90f854d3ec /debian/log.yaml | |
parent | Add 'sandbox' to CSP for media repo (#4284) (diff) | |
parent | Debian packaging via dh_virtualenv (#4285) (diff) | |
download | synapse-d3c9c562c60133a2263b36376aa854064630589d.tar.xz |
Debian packaging via dh_virtualenv
Diffstat (limited to 'debian/log.yaml')
-rw-r--r-- | debian/log.yaml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/debian/log.yaml b/debian/log.yaml new file mode 100644 index 0000000000..b44a8901f6 --- /dev/null +++ b/debian/log.yaml @@ -0,0 +1,35 @@ + +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: 104857600 + backupCount: 10 + filters: [context] + console: + class: logging.StreamHandler + formatter: precise + level: WARN + +loggers: + synapse: + level: INFO + + synapse.storage.SQL: + level: INFO + +root: + level: INFO + handlers: [file, console] |