File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -870,16 +870,16 @@ async def message_router():
870870 # Stream might be closed, remove from registry
871871 self ._request_streams .pop (request_stream_id , None )
872872 else :
873- logging .debug (
873+ logger .debug (
874874 f"""Request stream { request_stream_id } not found
875875 for message. Still processing message as the client
876876 might reconnect and replay."""
877877 )
878878 except anyio .ClosedResourceError :
879879 if self ._terminated :
880- logging .debug ("Read stream closed by client" )
880+ logger .debug ("Read stream closed by client" )
881881 else :
882- logging .exception ("Unexpected closure of read stream in message router" )
882+ logger .exception ("Unexpected closure of read stream in message router" )
883883 except Exception :
884884 logger .exception ("Error in message router" )
885885
You can’t perform that action at this time.
0 commit comments