From eebd9bf05c3d7ca49e3b9d618556acc7a4c80124 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Fri, 24 Jul 2020 15:17:41 -0400 Subject: [PATCH] Flip to trace logging --- debugging/mp_debug.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/debugging/mp_debug.py b/debugging/mp_debug.py index c43a810..513cfaa 100644 --- a/debugging/mp_debug.py +++ b/debugging/mp_debug.py @@ -17,12 +17,12 @@ async def main(): """ async with tractor.open_nursery() as n: - # portal = await n.run_in_actor('future_self', bubble) - portal = await n.run_in_actor('future_self', bail) + portal = await n.run_in_actor('future_self', bubble) + # portal = await n.run_in_actor('future_self', bail) # The ``async with`` will unblock here since the 'some_linguist' # actor has completed its main task ``cellar_door``. if __name__ == '__main__': - tractor.run(main, loglevel='info', debug_mode=True) + tractor.run(main, loglevel='trace', debug_mode=True)