GitHub user potiuk added a comment to the discussion: CeleryExecutor tasks flooded by repeated ‘Secrets backends loaded for worker’ INFO logs
Please open issue for that. For configuration - I think if you look at https://airflow.apache.org/docs/apache-airflow/stable/administration-and-deployment/logging-monitoring/advanced-logging-configuration.html#create-a-custom-logging-class it will explain how to configure separate loggers - likely you can set supervisor's logger to WARNING level. But please open an issue so that it can be addressed in 3.0.2 ``` log = structlog.get_logger(logger_name="supervisor") log.info( "Secrets backends loaded for worker", count=len(backends), backend_classes=[type(b).__name__ for b in backends], ) ``` GitHub link: https://github.com/apache/airflow/discussions/50472#discussioncomment-13120170 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected]
