From 6e54abc56d0721fe1a2d33420d66d41fce2707f6 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Thu, 30 May 2024 09:06:10 -0400 Subject: [PATCH] Fix missing newline in task-cancel log-message --- tractor/_rpc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tractor/_rpc.py b/tractor/_rpc.py index f05a433..daf1ec8 100644 --- a/tractor/_rpc.py +++ b/tractor/_rpc.py @@ -393,7 +393,7 @@ async def _errors_relayed_via_ipc( # cancel scope will not have been inserted yet if is_rpc: log.warning( - 'RPC task likely errored or cancelled before start?' + 'RPC task likely errored or cancelled before start?\n' f'|_{ctx._task}\n' f' >> {ctx.repr_rpc}\n' )