We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed731c5 commit 4420811Copy full SHA for 4420811
1 file changed
config.py
@@ -20,6 +20,9 @@
20
load_dotenv()
21
logger = logging.getLogger(__name__)
22
23
+# Enable Azure SDK debug logging
24
+logging.getLogger("azure.identity").setLevel(logging.DEBUG)
25
+logging.getLogger("azure.core.pipeline.policies.http_logging_policy").setLevel(logging.DEBUG)
26
27
# ============================================================
28
# Bootstrap settings (always from env — needed to find Azure)
@@ -359,7 +362,7 @@ def get_settings() -> Settings:
359
362
360
363
loader = get_app_config_loader()
361
364
if loader:
- logger.info("Loading config from Azure App Configuration")
365
+ print("Loading config from Azure App Configuration")
366
# Trigger an initial refresh check
367
try:
368
loader.refresh()
0 commit comments