arjunanan6 commented on issue #33255:
URL: https://github.com/apache/airflow/issues/33255#issuecomment-1671203034
Could it be an idea to implement a custom log level in
airflow.providers.microsoft.azure.secrets.key_vault, ex:
```
import logging
class AzureKeyVaultBackend(BaseSecretsBackend, LoggingMixin):
# ... (Class definition and other methods)
def __init__(
self,
connections_prefix: str = "airflow-connections",
variables_prefix: str = "airflow-variables",
config_prefix: str = "airflow-config",
vault_url: str = "",
sep: str = "-",
log_level = logging.INFO
**kwargs,
) -> None:
.
.
.
.
self.log_level = log_level
secret_client_logger =
logging.getLogger("azure.core.pipeline.policies.http_logging_policy")
secret_client_logger.setLevel(self.log_level)
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]