From 4b40599c48956dec27785fc5888e62a7b8354bc8 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Mon, 6 Dec 2021 16:29:28 -0500 Subject: [PATCH] Fix ignore warning log message --- tractor/_actor.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tractor/_actor.py b/tractor/_actor.py index df754c3..742d9ae 100644 --- a/tractor/_actor.py +++ b/tractor/_actor.py @@ -646,7 +646,8 @@ class Actor: ctx = self._contexts[(uid, cid)] except KeyError: log.warning( - f'Ignoring {msg} for unknwon context with {uid}') + f'Ignoring msg from [no-longer/un]known context with {uid}:' + f'\n{msg}') return send_chan = ctx._send_chan