From 115bb4366ff358134483b8fb6f2550bdcdb9b216 Mon Sep 17 00:00:00 2001 From: William Pursell Date: Wed, 19 Sep 2018 15:50:29 -0700 Subject: [PATCH] [AIRFLOW-3090] Make "No tasks to consider for execution." a debug msg During normal operation, it is not necessary to see the message. This can only be useful when debugging an issue. --- airflow/jobs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airflow/jobs.py b/airflow/jobs.py index 916ec1f24352a..48e15f758de02 100644 --- a/airflow/jobs.py +++ b/airflow/jobs.py @@ -1101,7 +1101,7 @@ def _find_executable_task_instances(self, simple_dag_bag, states, session=None): task_instances_to_examine = ti_query.all() if len(task_instances_to_examine) == 0: - self.log.info("No tasks to consider for execution.") + self.log.debug("No tasks to consider for execution.") return executable_tis # Put one task instance on each line