You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by cr...@apache.org on 2018/01/23 17:06:23 UTC

incubator-airflow git commit: [AIRFLOW-2025] Reduced Logging verbosity

Repository: incubator-airflow
Updated Branches:
  refs/heads/master 1021f6803 -> 18d09a948


[AIRFLOW-2025] Reduced Logging verbosity

Closes #2967 from
britishbadger/reduce_logging_verbosity


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

Branch: refs/heads/master
Commit: 18d09a9481800baf8c546814564aafcfa8ed0e1b
Parents: 1021f68
Author: Kristian Jones <kr...@dxc.com>
Authored: Tue Jan 23 09:05:58 2018 -0800
Committer: Chris Riccomini <cr...@apache.org>
Committed: Tue Jan 23 09:06:04 2018 -0800

----------------------------------------------------------------------
 airflow/contrib/operators/gcs_download_operator.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/18d09a94/airflow/contrib/operators/gcs_download_operator.py
----------------------------------------------------------------------
diff --git a/airflow/contrib/operators/gcs_download_operator.py b/airflow/contrib/operators/gcs_download_operator.py
index e02656c..b1df63a 100644
--- a/airflow/contrib/operators/gcs_download_operator.py
+++ b/airflow/contrib/operators/gcs_download_operator.py
@@ -75,4 +75,4 @@ class GoogleCloudStorageDownloadOperator(BaseOperator):
                 context['ti'].xcom_push(key=self.store_to_xcom_key, value=file_bytes)
             else:
                 raise RuntimeError('The size of the downloaded file is too large to push to XCom!')
-        self.log.info(file_bytes)
+        self.log.debug(file_bytes)