Repository: incubator-airflow
Updated Branches:
  refs/heads/master 846e2746c -> 7c19ed02b


[AIRFLOW-1729][AIRFLOW-XXX] Remove extra debug log at info level

I left an extra log call, at info level in #3602
that was being used for
debugging.

Closes #3603 from ashb/remove-extra-log


Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/7c19ed02
Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/7c19ed02
Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/7c19ed02

Branch: refs/heads/master
Commit: 7c19ed02bc30f71fd73e38234b3b210072274f3b
Parents: 846e274
Author: Ash Berlin-Taylor <[email protected]>
Authored: Sun Jul 15 17:59:32 2018 +0200
Committer: Bolke de Bruin <[email protected]>
Committed: Sun Jul 15 17:59:32 2018 +0200

----------------------------------------------------------------------
 airflow/models.py | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/7c19ed02/airflow/models.py
----------------------------------------------------------------------
diff --git a/airflow/models.py b/airflow/models.py
index 21df933..57ef9d3 100755
--- a/airflow/models.py
+++ b/airflow/models.py
@@ -521,7 +521,6 @@ class DagBag(BaseDagBag, LoggingMixin):
         FileLoadStat = namedtuple(
             'FileLoadStat', "file duration dag_num task_num dags")
         for filepath in utils.dag_processing.list_py_file_paths(dag_folder):
-            self.log.info(filepath)
             try:
                 ts = timezone.utcnow()
                 found_dags = self.process_file(

Reply via email to