From 45da5117a2df661d6a294a6be60b2ed87c6f6264 Mon Sep 17 00:00:00 2001 From: Tomas Kracmar Date: Wed, 13 Sep 2023 15:12:04 +0200 Subject: [PATCH] Added logging of Azure modules to config template. --- .../matrix-bot-maubot/templates/config/config.yaml.j2 | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/roles/custom/matrix-bot-maubot/templates/config/config.yaml.j2 b/roles/custom/matrix-bot-maubot/templates/config/config.yaml.j2 index 7750ec9a3..b111ed1ef 100644 --- a/roles/custom/matrix-bot-maubot/templates/config/config.yaml.j2 +++ b/roles/custom/matrix-bot-maubot/templates/config/config.yaml.j2 @@ -105,6 +105,16 @@ logging: level: {{ matrix_bot_maubot_logging_level|to_json }} aiohttp: level: {{ matrix_bot_maubot_logging_level|to_json }} +{% if matrix_bot_maubot_container_image_customizations_azure_dependencies_installation_enabled %} + azure.identity._internal.get_token_mixin: + level: {{ matrix_bot_maubot_logging_level|to_json }} + urllib3.connectionpool: + level: {{ matrix_bot_maubot_logging_level|to_json }} + msal.application: + level: {{ matrix_bot_maubot_logging_level|to_json }} + msal.telemetry: + level: {{ matrix_bot_maubot_logging_level|to_json }} +{% endif %} root: level: {{ matrix_bot_maubot_logging_level|to_json }} handlers: [console]