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.
1 parent 88ee3fb commit ef781d3Copy full SHA for ef781d3
azure/functions/_http_asgi.py
@@ -117,6 +117,7 @@ async def _receive(self):
117
}
118
119
async def _send(self, message):
120
+ logging.debug("Received %s from ASGI worker.", message)
121
if message["type"] == "http.response.start":
122
self._handle_http_response_start(message)
123
elif message["type"] == "http.response.body":
setup.py
@@ -7,6 +7,7 @@
7
EXTRA_REQUIRES = {
8
'dev': [
9
'flake8~=4.0.1',
10
+ 'flake8-logging-format',
11
'mypy',
12
'pytest',
13
'pytest-cov',
0 commit comments