From 3597dc384b161d325c4c5f419be0a96dd7524320 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Wed, 23 Jan 2019 21:30:38 +0100 Subject: [PATCH] add default log levels --- defaults/main.yml | 7 +++++++ templates/opt/matrix/config/logging.config.j2 | 12 ++++++------ 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/defaults/main.yml b/defaults/main.yml index 4cb85f2..e9c2283 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -40,6 +40,13 @@ matrix_conf_dir: "{{ matrix_base_dir }}/config" matrix_data_dir: "{{ matrix_base_dir }}/data" matrix_log_dir: "{{ matrix_base_dir }}/logs" +matrix_log_file_level: INFO +matrix_log_console_level: ERROR +matrix_log_synapse_level: INFO +matrix_log_synapse_sql_level: INFO +matrix_log_ldap_level: INFO +matrix_log_ldap_auth_level: INFO + matrix_server_url: example.com matrix_client_url: https://matrix.example.com diff --git a/templates/opt/matrix/config/logging.config.j2 b/templates/opt/matrix/config/logging.config.j2 index c15c263..8587420 100644 --- a/templates/opt/matrix/config/logging.config.j2 +++ b/templates/opt/matrix/config/logging.config.j2 @@ -20,29 +20,29 @@ handlers: backupCount: 10 filters: [context] encoding: utf8 - level: DEBUG + level: {{ matrix_log_file_level }} console: class: logging.StreamHandler formatter: precise filters: [context] + level: {{ matrix_log_console_level }} loggers: synapse: - level: INFO + level: {{ matrix_log_synapse_level }} synapse.storage.SQL: # beware: increasing this to DEBUG will make synapse log sensitive # information such as access tokens. - level: INFO + level: {{ matrix_log_synapse_sql_level }} {% if matrix_ldap_auth_enabled %} ldap3: - level: DEBUG + level: {{ matrix_log_ldap_level }} ldap_auth_provider: - level: DEBUG + level: {{ matrix_log_ldap_auth_level }} {% endif %} root: - level: INFO handlers: [file, console]