Make stream draining status logs `.debug()` level

modden_spawn_from_client_req
Tyler Goodlet 2024-03-01 19:27:10 -05:00
parent 08a6a51cb8
commit 28fefe4ffe
2 changed files with 2 additions and 2 deletions

View File

@ -326,7 +326,7 @@ async def open_root_actor(
not entered
and not is_multi_cancelled(err)
):
logger.exception("Root actor crashed:")
logger.exception('Root actor crashed:\n')
# ALWAYS re-raise any error bubbled up from the
# runtime!

View File

@ -265,7 +265,7 @@ class MsgStream(trio.abc.Channel):
try:
maybe_final_msg = self.receive_nowait()
if maybe_final_msg:
log.cancel(
log.debug(
'Drained un-processed stream msg:\n'
f'{pformat(maybe_final_msg)}'
)