Repository: incubator-airflow Updated Branches: refs/heads/v1-10-test 48847d737 -> fc00875ed
[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 (cherry picked from commit 7c19ed02bc30f71fd73e38234b3b210072274f3b) Signed-off-by: Bolke de Bruin <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/fc00875e Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/fc00875e Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/fc00875e Branch: refs/heads/v1-10-test Commit: fc00875ed00555e5da5661324479e8703787bbd5 Parents: 48847d7 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:45 2018 +0200 ---------------------------------------------------------------------- airflow/models.py | 1 - 1 file changed, 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/fc00875e/airflow/models.py ---------------------------------------------------------------------- diff --git a/airflow/models.py b/airflow/models.py index 5f0713f..cb0165a 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(
