Fix ignore warning log message

stricter_context_starting
Tyler Goodlet 2021-12-06 16:29:28 -05:00
parent a79cdc7b44
commit 4b40599c48
1 changed files with 2 additions and 1 deletions

View File

@ -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