This is an automated email from the ASF dual-hosted git repository.

uranusjr pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 00a527f671 Remove noisy log from SQL table check (#31037)
00a527f671 is described below

commit 00a527f67111cc4f2bb03ff374f21b9f4930727c
Author: Jonathan Stott <[email protected]>
AuthorDate: Mon May 8 07:51:50 2023 +0100

    Remove noisy log from SQL table check (#31037)
---
 airflow/providers/common/sql/operators/sql.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/airflow/providers/common/sql/operators/sql.py 
b/airflow/providers/common/sql/operators/sql.py
index 24397592ea..eef4ba4e67 100644
--- a/airflow/providers/common/sql/operators/sql.py
+++ b/airflow/providers/common/sql/operators/sql.py
@@ -622,7 +622,7 @@ class SQLTableCheckOperator(BaseSQLOperator):
         self.log.info("All tests have passed")
 
     def _generate_sql_query(self):
-        self.log.info("Partition clause: %s", self.partition_clause)
+        self.log.debug("Partition clause: %s", self.partition_clause)
 
         def _generate_partition_clause(check_name):
             if self.partition_clause and "partition_clause" not in 
self.checks[check_name]:

Reply via email to