File tree Expand file tree Collapse file tree 1 file changed +12
-5
lines changed
Expand file tree Collapse file tree 1 file changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -1104,11 +1104,11 @@ async def _serve(
11041104 message = await ws .recv (decode = False )
11051105 try :
11061106 msg = parse_transport_msg (message )
1107- logger .debug (
1108- "[%s] got a message %r" ,
1109- transport_id ,
1110- msg ,
1111- )
1107+ # logger.debug(
1108+ # "[%s] got a message %r",
1109+ # transport_id,
1110+ # msg,
1111+ # )
11121112
11131113 if msg .controlFlags & STREAM_OPEN_BIT != 0 :
11141114 raise InvalidMessageException (
@@ -1131,6 +1131,13 @@ async def _serve(
11311131 case other :
11321132 assert_never (other )
11331133
1134+ # TODO: Delete me
1135+ logger .debug (
1136+ "[%s] got a message %r" ,
1137+ transport_id ,
1138+ msg ,
1139+ )
1140+
11341141 reset_session_close_countdown ()
11351142
11361143 # Shortcut to avoid processing ack packets
You can’t perform that action at this time.
0 commit comments