mattp- commented on PR #56313:
URL: https://github.com/apache/airflow/pull/56313#issuecomment-3372371447

   @ashb It seems tied to using a custom logging class to reproduce:
   
   logging_config_class = bloomberg.mse.airflow.log_config.LOGGING_CONFIG , 
where the contents of that is something like (truncated)
   ```
   ❯ cat src/bloomberg/mse/airflow/log_config.py
   import os
   
   from copy import deepcopy
   from airflow.config_templates.airflow_local_settings import 
DEFAULT_LOGGING_CONFIG
   
   # Using deepcopy will allow us to keep up with the new features that airflow 
exposes while
   # keeping our customized logs
   # 
https://github.com/apache/airflow/blob/v2-5-stable/airflow/config_templates/airflow_local_settings.py#L66
   # Lists all default logging config airflow is using, which already taking 
account of env var
   LOGGING_CONFIG = deepcopy(DEFAULT_LOGGING_CONFIG)
   ```
   it doesn't happen if logging_config_class is unset


-- 
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]

Reply via email to