Skip to content

Commit 0b4aff3

Browse files
committed
chore: remove logging for async requests
1 parent 4fb93ff commit 0b4aff3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

google/auth/aio/transport/aiohttp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ async def __call__(
167167
timeout=client_timeout,
168168
**kwargs,
169169
)
170-
_helpers.response_log(_LOGGER, response)
170+
# TODO(https://github.com/googleapis/google-auth-library-python/issues/1697): Add response log.
171171
return Response(response)
172172

173173
except aiohttp.ClientError as caught_exc:

google/auth/transport/_aiohttp_requests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ async def __call__(
191191
response = await self.session.request(
192192
method, url, data=body, headers=headers, timeout=timeout, **kwargs
193193
)
194-
_helpers.response_log(_LOGGER, response)
194+
# TODO(https://github.com/googleapis/google-auth-library-python/issues/1697): Add response log.
195195
return _CombinedResponse(response)
196196

197197
except aiohttp.ClientError as caught_exc:

0 commit comments

Comments
 (0)