diff options
author | kaiyou <pierre@jaury.eu> | 2018-02-03 20:30:08 +0100 |
---|---|---|
committer | kaiyou <pierre@jaury.eu> | 2018-02-03 20:30:08 +0100 |
commit | d434ae33875b4c7d5ee04c45e454ce237ce578f8 (patch) | |
tree | b52cfb8ee6f487249ab786167352fbc62fccb026 /contrib/docker/conf/log.config | |
parent | Initial commit including a Dockerfile for synapse (diff) | |
download | synapse-d434ae33875b4c7d5ee04c45e454ce237ce578f8.tar.xz |
Add template config files for the Docker image
Diffstat (limited to '')
-rw-r--r-- | contrib/docker/conf/log.config | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/contrib/docker/conf/log.config b/contrib/docker/conf/log.config new file mode 100644 index 0000000000..45e7eef953 --- /dev/null +++ b/contrib/docker/conf/log.config @@ -0,0 +1,36 @@ +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: /data/homeserver.log + maxBytes: 104857600 + backupCount: 10 + filters: [context] + console: + class: logging.StreamHandler + formatter: precise + filters: [context] + +loggers: + synapse: + level: INFO + + synapse.storage.SQL: + # beware: increasing this to DEBUG will make synapse log sensitive + # information such as access tokens. + level: INFO + +root: + level: INFO + handlers: [file, console] |