Configure logging in the Azure libraries for Python | Microsoft Docs
https://docs.microsoft.com/en-us/azure/developer/python/sdk/azure-sdk-logging
Apr 20, 2022 · You can use the logger.isEnabledFor method to check whether any given logging level is enabled: Python Copy print (f"Logger enabled for ERROR={logger.isEnabledFor (logging.ERROR)}, " \ f"WARNING={logger.isEnabledFor (logging.WARNING)}, " \ f"INFO={logger.isEnabledFor (logging.INFO)}, " \ f"DEBUG={logger.isEnabledFor …
DA: 1 PA: 80 MOZ Rank: 58