This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new f424641d05e Change DAG processed log when no action required (#72308)
f424641d05e is described below
commit f424641d05e16a36c420877e544dff70120cac59
Author: KidAmnesiac1 <[email protected]>
AuthorDate: Wed Sep 9 05:44:30 2026 +0800
Change DAG processed log when no action required (#72308)
This change will downgrade the log level from info to debug when the DAG
processor does not require a refresh of a bundle
---
airflow-core/src/airflow/dag_processing/manager.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/airflow-core/src/airflow/dag_processing/manager.py
b/airflow-core/src/airflow/dag_processing/manager.py
index d892f5d7f23..80bbf40d441 100644
--- a/airflow-core/src/airflow/dag_processing/manager.py
+++ b/airflow-core/src/airflow/dag_processing/manager.py
@@ -888,7 +888,7 @@ class DagFileProcessorManager(LoggingMixin):
current_version_matches_db=current_version_matches_db,
previously_seen=previously_seen,
):
- self.log.info("Not time to refresh bundle %s", bundle.name)
+ self.log.debug("Not time to refresh bundle %s", bundle.name)
continue
self.log.info("Refreshing bundle %s", bundle.name)