mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-10 12:47:39 +01:00
Change logging behaviour to only stdout with configurable verbosity (default: info)
This commit is contained in:
parent
9892eac789
commit
3a80616185
@ -46,6 +46,9 @@ matrix_appservice_webhooks_homeserver_token: ''
|
||||
matrix_appservice_webhooks_id_token: ''
|
||||
matrix_appservice_webhooks_api_secret: ''
|
||||
|
||||
# Logging information (error, warn, info, verbose, debug is availabe) default is: info
|
||||
matrix_appservice_webhooks_log_level: 'info'
|
||||
|
||||
matrix_appservice_webhooks_configuration_yaml: |
|
||||
|
||||
# Configuration specific to the application service. All fields (unless otherwise marked) are required.
|
||||
@ -79,9 +82,9 @@ matrix_appservice_webhooks_configuration_yaml: |
|
||||
logging:
|
||||
file: data/webhook.log
|
||||
console: true
|
||||
consoleLevel: info
|
||||
consoleLevel: {{ matrix_appservice_webhooks_log_level }}
|
||||
fileLevel: verbose
|
||||
writeFiles: true
|
||||
writeFiles: false
|
||||
rotate:
|
||||
size: 52428800 # bytes, default is 50mb
|
||||
count: 5
|
||||
|
Loading…
Reference in New Issue
Block a user