diff options
author | Michael Kaye <1917473+michaelkaye@users.noreply.github.com> | 2018-05-21 14:45:33 +0100 |
---|---|---|
committer | Michael Kaye <1917473+michaelkaye@users.noreply.github.com> | 2018-08-02 18:21:32 +0100 |
commit | 0d25724419c43313f9b8345b07aaebe3eeeeee7e (patch) | |
tree | 6aa1c51d2216d42911381e61d31fb2e322927750 /contrib/docker/conf/log.config | |
parent | Merge pull request #3639 from matrix-org/rav/refactor_error_handling (diff) | |
download | synapse-0d25724419c43313f9b8345b07aaebe3eeeeee7e.tar.xz |
Refactor docker locations and README.
This addresses #3224
Diffstat (limited to 'contrib/docker/conf/log.config')
-rw-r--r-- | contrib/docker/conf/log.config | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/contrib/docker/conf/log.config b/contrib/docker/conf/log.config deleted file mode 100644 index 1851995802..0000000000 --- a/contrib/docker/conf/log.config +++ /dev/null @@ -1,29 +0,0 @@ -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] |