This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch v2-10-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v2-10-test by this push:
new 53306d4a25 Set better logging level for path wrapper (#41615) (#41668)
53306d4a25 is described below
commit 53306d4a25ec714c9d70fbb8bd72fc2556f076db
Author: Maciej Obuchowski <[email protected]>
AuthorDate: Thu Aug 22 13:42:57 2024 +0200
Set better logging level for path wrapper (#41615) (#41668)
Co-authored-by: Computer Network Investigation
<[email protected]>
---
airflow/io/path.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/airflow/io/path.py b/airflow/io/path.py
index 7c8d1f9f19..c6d9255f91 100644
--- a/airflow/io/path.py
+++ b/airflow/io/path.py
@@ -54,7 +54,7 @@ class TrackingFileWrapper(LoggingMixin):
if callable(attr):
# If the attribute is a method, wrap it in another method to
intercept the call
def wrapper(*args, **kwargs):
- self.log.error("Calling method: %s", name)
+ self.log.debug("Calling method: %s", name)
if name == "read":
get_hook_lineage_collector().add_input_dataset(context=self._path,
uri=str(self._path))
elif name == "write":