fix: make bridge logging ERROR only

Decryption happens on the bridges (between systems) so in order to stop
plaintext logging of chat messages, we default to ERROR. If people need
more, they can submit changes for customisation.
This commit is contained in:
decentral1se 2023-01-08 01:11:58 +01:00
parent 9b12e4a0eb
commit 245e81e4bb
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
4 changed files with 11 additions and 11 deletions

View File

@ -1,7 +1,7 @@
export DISCORD_BRIDGE_YAML_VERSION=v1
export DISCORD_BRIDGE_YAML_VERSION=v2
export ENTRYPOINT_CONF_VERSION=v1
export HOMESERVER_YAML_VERSION=v15
export LOG_CONFIG_VERSION=v2
export SHARED_SECRET_AUTH_VERSION=v1
export SIGNAL_BRIDGE_YAML_VERSION=v2
export TELEGRAM_BRIDGE_YAML_VERSION=v3
export SIGNAL_BRIDGE_YAML_VERSION=v3
export TELEGRAM_BRIDGE_YAML_VERSION=v4

View File

@ -50,7 +50,7 @@ auth:
logging:
# What level should the logger output to the console at.
console: "warn" #silly, verbose, info, http, warn, error, silent
console: "error" #silly, verbose, info, http, warn, error, silent
lineDateFormat: "MMM-D HH:mm:ss.SSS" # This is in moment.js format
files:
- file: "debug.log"

View File

@ -316,9 +316,9 @@ logging:
formatter: colored
loggers:
mau:
level: DEBUG
level: ERROR
aiohttp:
level: INFO
level: ERROR
root:
level: DEBUG
level: ERROR
handlers: [console]

View File

@ -534,11 +534,11 @@ logging:
formatter: colored
loggers:
mau:
level: DEBUG
level: ERROR
telethon:
level: INFO
level: ERROR
aiohttp:
level: INFO
level: ERROR
root:
level: DEBUG
level: ERROR
handlers: [file, console]