Make linkedin logging level configurable

development
Slavi Pantaleev 2 years ago
parent 9e65ba3298
commit b2f47fcfcd

@ -72,6 +72,9 @@ matrix_beeper_linkedin_appservice_database_uri: "{{
# Can be set to enable automatic double-puppeting via Shared Secret Auth (https://github.com/devture/matrix-synapse-shared-secret-auth). # Can be set to enable automatic double-puppeting via Shared Secret Auth (https://github.com/devture/matrix-synapse-shared-secret-auth).
matrix_beeper_linkedin_login_shared_secret: '' matrix_beeper_linkedin_login_shared_secret: ''
# Specifies the default log level for all bridge loggers.
matrix_beeper_linkedin_logging_level: WARNING
# Default beeper-linkedin configuration template which covers the generic use case. # Default beeper-linkedin configuration template which covers the generic use case.
# You can customize it by controlling the various variables inside it. # You can customize it by controlling the various variables inside it.
# #

@ -259,12 +259,12 @@ logging:
formatter: colored formatter: colored
loggers: loggers:
mau: mau:
level: WARNING level: {{ matrix_beeper_linkedin_logging_level|to_json }}
paho: paho:
level: WARNING level: {{ matrix_beeper_linkedin_logging_level|to_json }}
aiohttp: aiohttp:
level: WARNING level: {{ matrix_beeper_linkedin_logging_level|to_json }}
root: root:
level: WARNING level: {{ matrix_beeper_linkedin_logging_level|to_json }}
handlers: [ console] handlers: [console]

Loading…
Cancel
Save