xoxys.matrix/templates/opt/matrix/config/logging.config.j2

48 lines
1.2 KiB
Plaintext
Raw Normal View History

2019-01-19 15:09:07 +01:00
#jinja2: lstrip_blocks: True
2019-08-12 00:32:36 +02:00
{{ ansible_managed | comment }}
2019-01-19 15:06:56 +01:00
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
2019-01-19 15:09:07 +01:00
filename: {{ matrix_log_dir }}/homeserver.log
2019-01-19 15:06:56 +01:00
maxBytes: 104857600
backupCount: 10
filters: [context]
encoding: utf8
console:
class: logging.StreamHandler
formatter: precise
filters: [context]
loggers:
synapse:
2019-01-23 21:30:38 +01:00
level: {{ matrix_log_synapse_level }}
2019-01-19 15:06:56 +01:00
synapse.storage.SQL:
# beware: increasing this to DEBUG will make synapse log sensitive
# information such as access tokens.
2019-01-23 21:30:38 +01:00
level: {{ matrix_log_synapse_sql_level }}
2019-01-19 22:02:52 +01:00
{% if matrix_ldap_auth_enabled %}
2019-08-12 00:32:36 +02:00
2019-01-19 22:02:52 +01:00
ldap3:
2019-01-23 21:30:38 +01:00
level: {{ matrix_log_ldap_level }}
2019-01-19 22:02:52 +01:00
ldap_auth_provider:
2019-01-23 21:30:38 +01:00
level: {{ matrix_log_ldap_auth_level }}
2019-01-19 22:02:52 +01:00
{% endif %}
2019-01-19 15:06:56 +01:00
root:
level: {{ matrix_log_root_level }}
2019-01-19 15:06:56 +01:00
handlers: [file, console]