| @@ -438,7 +438,9 @@ matrix_synapse_container_additional_volumes: [] | |||||
| # A list of additional loggers to register in synapse.log.config. | # A list of additional loggers to register in synapse.log.config. | ||||
| # This list gets populated dynamically based on Synapse extensions that have been enabled. | # This list gets populated dynamically based on Synapse extensions that have been enabled. | ||||
| # Contains definition objects like this: `{"name": "..", "level": "DEBUG"} | # Contains definition objects like this: `{"name": "..", "level": "DEBUG"} | ||||
| matrix_synapse_additional_loggers: [] | |||||
| matrix_synapse_additional_loggers: "{{ matrix_synapse_additional_loggers_auto + matrix_synapse_additional_loggers_custom }}" | |||||
| matrix_synapse_additional_loggers_auto: [] | |||||
| matrix_synapse_additional_loggers_custom: [] | |||||
| # A list of appservice config files (in-container filesystem paths). | # A list of appservice config files (in-container filesystem paths). | ||||
| # This list gets populated dynamically based on Synapse extensions that have been enabled. | # This list gets populated dynamically based on Synapse extensions that have been enabled. | ||||
| @@ -33,9 +33,9 @@ | |||||
| ["--mount type=bind,src={{ matrix_synapse_ext_path }}/matrix_e2ee_filter.py,dst={{ matrix_synapse_in_container_python_packages_path }}/matrix_e2ee_filter.py,ro"] | ["--mount type=bind,src={{ matrix_synapse_ext_path }}/matrix_e2ee_filter.py,dst={{ matrix_synapse_in_container_python_packages_path }}/matrix_e2ee_filter.py,ro"] | ||||
| }} | }} | ||||
| matrix_synapse_additional_loggers: > | |||||
| matrix_synapse_additional_loggers_auto: > | |||||
| {{ | {{ | ||||
| matrix_synapse_additional_loggers | |||||
| matrix_synapse_additional_loggers_auto | |||||
| + | + | ||||
| [{'name': 'matrix_e2ee_filter', 'level': 'INFO'}] | [{'name': 'matrix_e2ee_filter', 'level': 'INFO'}] | ||||
| }} | }} | ||||
| @@ -3,9 +3,9 @@ | |||||
| - ansible.builtin.set_fact: | - ansible.builtin.set_fact: | ||||
| matrix_synapse_password_providers_enabled: true | matrix_synapse_password_providers_enabled: true | ||||
| matrix_synapse_additional_loggers: > | |||||
| matrix_synapse_additional_loggers_auto: > | |||||
| {{ | {{ | ||||
| matrix_synapse_additional_loggers | |||||
| matrix_synapse_additional_loggers_auto | |||||
| + | + | ||||
| [{'name': 'ldap_auth_provider', 'level': 'INFO'}] | [{'name': 'ldap_auth_provider', 'level': 'INFO'}] | ||||
| }} | }} | ||||
| @@ -28,9 +28,9 @@ | |||||
| ["--mount type=bind,src={{ matrix_synapse_ext_path }}/rest_auth_provider.py,dst={{ matrix_synapse_in_container_python_packages_path }}/rest_auth_provider.py,ro"] | ["--mount type=bind,src={{ matrix_synapse_ext_path }}/rest_auth_provider.py,dst={{ matrix_synapse_in_container_python_packages_path }}/rest_auth_provider.py,ro"] | ||||
| }} | }} | ||||
| matrix_synapse_additional_loggers: > | |||||
| matrix_synapse_additional_loggers_auto: > | |||||
| {{ | {{ | ||||
| matrix_synapse_additional_loggers | |||||
| matrix_synapse_additional_loggers_auto | |||||
| + | + | ||||
| [{'name': 'rest_auth_provider', 'level': 'INFO'}] | [{'name': 'rest_auth_provider', 'level': 'INFO'}] | ||||
| }} | }} | ||||
| @@ -43,9 +43,9 @@ | |||||
| ["--mount type=bind,src={{ matrix_synapse_ext_path }}/shared_secret_authenticator.py,dst={{ matrix_synapse_in_container_python_packages_path }}/shared_secret_authenticator.py,ro"] | ["--mount type=bind,src={{ matrix_synapse_ext_path }}/shared_secret_authenticator.py,dst={{ matrix_synapse_in_container_python_packages_path }}/shared_secret_authenticator.py,ro"] | ||||
| }} | }} | ||||
| matrix_synapse_additional_loggers: > | |||||
| matrix_synapse_additional_loggers_auto: > | |||||
| {{ | {{ | ||||
| matrix_synapse_additional_loggers | |||||
| matrix_synapse_additional_loggers_auto | |||||
| + | + | ||||
| [{'name': 'shared_secret_authenticator', 'level': 'INFO'}] | [{'name': 'shared_secret_authenticator', 'level': 'INFO'}] | ||||
| }} | }} | ||||