This is an automated email from the ASF dual-hosted git repository.
vatsrahul1001 pushed a commit to branch v3-3-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-3-test by this push:
new a2abdc59e20 [v3-3-test] Change DAG processed log when no action
required (#72308) (#72749)
a2abdc59e20 is described below
commit a2abdc59e20f3f86dbebcdb8649348bc2f1c9525
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Sep 10 01:51:46 2026 +0530
[v3-3-test] Change DAG processed log when no action required (#72308)
(#72749)
This change will downgrade the log level from info to debug when the DAG
processor does not require a refresh of a bundle
(cherry picked from commit f424641d05e16a36c420877e544dff70120cac59)
Co-authored-by: KidAmnesiac1 <[email protected]>
Co-authored-by: Rahul Vats <[email protected]>
---
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 ba197df0255..6d05c8d0a56 100644
--- a/airflow-core/src/airflow/dag_processing/manager.py
+++ b/airflow-core/src/airflow/dag_processing/manager.py
@@ -884,7 +884,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)