We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e1adfe4 + 88f96d3 commit 5f4ea2dCopy full SHA for 5f4ea2d
azure/functions/_http_asgi.py
@@ -166,7 +166,6 @@ async def main(req, context):
166
"""
167
warn("handle() is deprecated. Please await .handle_async() instead.",
168
DeprecationWarning, stacklevel=2)
169
- self._logger.debug("Handling %s as an ASGI request.", req.url)
170
self._logger.warning(
171
"handle() is deprecated. Please `await .handle_async()` instead.")
172
return self._handle(req, context)
@@ -195,7 +194,6 @@ async def main(req, context):
195
194
return await func.AsgiMiddleware(app).handle_async(req,
196
context)
197
198
- self._logger.debug("Awaiting %s as an ASGI request.", req.url)
199
return await self._handle_async(req, context)
200
201
async def _handle_async(self, req, context):
0 commit comments