Browse Source

Added logging of Azure modules to config template.

pull/2913/head
Tomas Kracmar 2 years ago
parent
commit
34f389e9d6
1 changed files with 10 additions and 0 deletions
  1. +10
    -0
      roles/custom/matrix-bot-maubot/templates/config/config.yaml.j2

+ 10
- 0
roles/custom/matrix-bot-maubot/templates/config/config.yaml.j2 View File

@@ -105,6 +105,16 @@ logging:
level: {{ matrix_bot_maubot_logging_level|to_json }} level: {{ matrix_bot_maubot_logging_level|to_json }}
aiohttp: aiohttp:
level: {{ matrix_bot_maubot_logging_level|to_json }} 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: root:
level: {{ matrix_bot_maubot_logging_level|to_json }} level: {{ matrix_bot_maubot_logging_level|to_json }}
handlers: [console] handlers: [console]

Loading…
Cancel
Save