nagasrisai opened a new pull request, #69960: URL: https://github.com/apache/airflow/pull/69960
Closes #69934 ## Summary Every time the `DagBundlesManager` is initialised (which happens at task startup for each task run) it emits an INFO-level log line listing every configured bundle: ``` INFO - DAG bundles loaded: dags-folder, bundle-a, bundle-b, ... ``` For deployments with many bundles this generates tens or hundreds of redundant lines in every task log. The message is useful for debugging configuration but has no operational value during normal task execution. This commit downgrades the log call from `self.log.info` to `self.log.debug`. The message is still available when debug logging is enabled. ## Changes - `airflow-core/src/airflow/dag_processing/bundles/manager.py`: `log.info` → `log.debug` for the bundle-loaded message. -- 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]
