Log the remote ip address for incoming websocket connections when debug is on (#40581)

pull/40550/head^2
J. Nick Koston 2020-09-26 02:32:50 -05:00 committed by GitHub
parent a42736e437
commit 35cfc80dd7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ class WebSocketHandler:
request = self.request
wsock = self.wsock = web.WebSocketResponse(heartbeat=55)
await wsock.prepare(request)
self._logger.debug("Connected")
self._logger.debug("Connected from %s", request.remote)
self._handle_task = asyncio.current_task()
@callback