MatrixSynapse/docker/conf/log.config

30 lines
670 B
Plaintext
Raw Normal View History

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:
2018-05-01 20:49:52 +02:00
level: {{ SYNAPSE_LOG_LEVEL or "WARNING" }}
synapse.storage.SQL:
# beware: increasing this to DEBUG will make synapse log sensitive
# information such as access tokens.
2018-05-01 20:49:52 +02:00
level: {{ SYNAPSE_LOG_LEVEL or "WARNING" }}
root:
2018-05-01 20:49:52 +02:00
level: {{ SYNAPSE_LOG_LEVEL or "WARNING" }}
handlers: [console]