Skip to content

Commit 5cba337

Browse files
committed
Add a debug line to see which data is loaded from external services
1 parent 0037580 commit 5cba337

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/zeep/transports.py

+1
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ def load(self, url):
122122
return fh.read()
123123

124124
def _load_remote_data(self, url):
125+
self.logger.debug("Loading remote data from: %s", url)
125126
response = self.session.get(url, timeout=self.load_timeout)
126127
response.raise_for_status()
127128
return response.content

0 commit comments

Comments
 (0)