andreyvital commented on issue #27345:
URL: https://github.com/apache/airflow/issues/27345#issuecomment-1295314800
@potiuk I've made the changes as pointed by you and it worked! 🥳
**config/log_config.py**
```Python
from copy import deepcopy
from airflow.config_templates.airflow_local_settings import \
DEFAULT_LOGGING_CONFIG
LOGGING_CONFIG = deepcopy(DEFAULT_LOGGING_CONFIG)
LOGGING_CONFIG["loggers"]["airflow.task"]["propagate"] = False
```
**airflow.cfg**:
```
[logging]
logging_config_class = log_config.LOGGING_CONFIG
```
Thanks!
--
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]