@@ -1246,7 +1246,7 @@ async def keepalive_ping(self) -> None:
12461246 self .logger .debug ("% received keepalive pong" )
12471247 except asyncio .TimeoutError :
12481248 if self .debug :
1249- self .logger .debug ("! timed out waiting for keepalive pong" )
1249+ self .logger .debug ("- timed out waiting for keepalive pong" )
12501250 self .fail_connection (
12511251 CloseCode .INTERNAL_ERROR ,
12521252 "keepalive ping timeout" ,
@@ -1288,7 +1288,7 @@ async def close_connection(self) -> None:
12881288 if await self .wait_for_connection_lost ():
12891289 return
12901290 if self .debug :
1291- self .logger .debug ("! timed out waiting for TCP close" )
1291+ self .logger .debug ("- timed out waiting for TCP close" )
12921292
12931293 # Half-close the TCP connection if possible (when there's no TLS).
12941294 if self .transport .can_write_eof ():
@@ -1306,7 +1306,7 @@ async def close_connection(self) -> None:
13061306 if await self .wait_for_connection_lost ():
13071307 return
13081308 if self .debug :
1309- self .logger .debug ("! timed out waiting for TCP close" )
1309+ self .logger .debug ("- timed out waiting for TCP close" )
13101310
13111311 finally :
13121312 # The try/finally ensures that the transport never remains open,
@@ -1332,7 +1332,7 @@ async def close_transport(self) -> None:
13321332 if await self .wait_for_connection_lost ():
13331333 return
13341334 if self .debug :
1335- self .logger .debug ("! timed out waiting for TCP close" )
1335+ self .logger .debug ("- timed out waiting for TCP close" )
13361336
13371337 # Abort the TCP connection. Buffers are discarded.
13381338 if self .debug :
0 commit comments