Lee-W commented on code in PR #66978:
URL: https://github.com/apache/airflow/pull/66978#discussion_r3246732332
##########
providers/google/src/airflow/providers/google/suite/hooks/drive.py:
##########
@@ -304,7 +304,7 @@ def upload_file(
try:
upload_location = self._resolve_file_path(folder_id)
except GoogleApiClientError as e:
- self.log.warning("A problem has been encountered when trying
to resolve file path: ", e)
+ self.log.warning("A problem has been encountered when trying
to resolve file path: %s", e)
Review Comment:
```suggestion
self.log.exception("A problem has been encountered when
trying to resolve file path:")
```
should we just go with this instead?
--
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]