kaxil commented on code in PR #41027:
URL: https://github.com/apache/airflow/pull/41027#discussion_r1692917397


##########
airflow/providers/google/cloud/operators/bigquery.py:
##########
@@ -315,7 +315,7 @@ def execute(self, context: Context):
             # the next() call which the RowIterator does not resemble to. 
Hence, ignore the arg-type error.
             # Row passed to _validate_records is a collection of values only, 
without column names.
             self._validate_records(next(iter(job.result()), []))  # type: 
ignore[arg-type]
-            self.log.info("Current state of job %s is %s", job.job_id, 
job.state)
+            self.log.debug("Current state of job %s is %s", job.job_id, 
job.state)

Review Comment:
   One issue with this is: if something goes wrong in the Triggerer, you 
wouldn't see any messages for a while



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to