Skip to content

Commit 5f4ea2d

Browse files
authored
Merge branch 'dev' into dapr-python-v2-support
2 parents e1adfe4 + 88f96d3 commit 5f4ea2d

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

azure/functions/_http_asgi.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,6 @@ async def main(req, context):
166166
"""
167167
warn("handle() is deprecated. Please await .handle_async() instead.",
168168
DeprecationWarning, stacklevel=2)
169-
self._logger.debug("Handling %s as an ASGI request.", req.url)
170169
self._logger.warning(
171170
"handle() is deprecated. Please `await .handle_async()` instead.")
172171
return self._handle(req, context)
@@ -195,7 +194,6 @@ async def main(req, context):
195194
return await func.AsgiMiddleware(app).handle_async(req,
196195
context)
197196
"""
198-
self._logger.debug("Awaiting %s as an ASGI request.", req.url)
199197
return await self._handle_async(req, context)
200198

201199
async def _handle_async(self, req, context):

0 commit comments

Comments
 (0)