diff --git a/tractor/_spawn.py b/tractor/_spawn.py index b88ca70..98f3f0c 100644 --- a/tractor/_spawn.py +++ b/tractor/_spawn.py @@ -147,7 +147,7 @@ async def cancel_on_completion( ) else: - log.info( + log.runtime( f"Cancelling {portal.channel.uid} gracefully " f"after result {result}") @@ -263,7 +263,7 @@ async def new_proc( parent_addr, infect_asyncio=infect_asyncio ) as proc: - log.info(f"Started {proc}") + log.runtime(f"Started {proc}") # wait for actor to spawn and connect back to us # channel should have handshake completed by the @@ -416,7 +416,7 @@ async def mp_new_proc( if not proc.is_alive(): raise ActorFailure("Couldn't start sub-actor?") - log.info(f"Started {proc}") + log.runtime(f"Started {proc}") try: # wait for actor to spawn and connect back to us