From 3412d344e22c1205ae58a22e8374b69a0976cd71 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Sat, 26 Jun 2021 23:35:59 -0400 Subject: [PATCH] Move some infos to runtime level --- tractor/_spawn.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tractor/_spawn.py b/tractor/_spawn.py index a4feb54..03ca984 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}") @@ -256,7 +256,7 @@ async def new_proc( subactor, parent_addr, ) 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 @@ -406,7 +406,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