Log the remote ip address for incoming websocket connections when debug is on (#40581)
parent
a42736e437
commit
35cfc80dd7
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue