summaryrefslogtreecommitdiff
path: root/contrib/docker/conf/log.config
blob: 1851995802e81538643a6d1be22bd53dbabb1a0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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]