From de3a6b9f09d7334ff7b72a88d36244e4b6025bad Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Mon, 27 Jul 2020 11:03:17 -0400 Subject: [PATCH] Support asyncio actors with the trio spawner backend --- tractor/_entry.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tractor/_entry.py b/tractor/_entry.py index 3c8ce27..caf1a31 100644 --- a/tractor/_entry.py +++ b/tractor/_entry.py @@ -73,6 +73,8 @@ def _trio_main( log.info(f"Started new trio process for {actor.uid}") + log.info(f"Started new trio process for {actor.uid}") + if actor.loglevel is not None: log.info( f"Setting loglevel for {actor.uid} to {actor.loglevel}")