forked from goodboy/tractor
Fix ignore warning log message
parent
a79cdc7b44
commit
4b40599c48
|
@ -646,7 +646,8 @@ class Actor:
|
||||||
ctx = self._contexts[(uid, cid)]
|
ctx = self._contexts[(uid, cid)]
|
||||||
except KeyError:
|
except KeyError:
|
||||||
log.warning(
|
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
|
return
|
||||||
|
|
||||||
send_chan = ctx._send_chan
|
send_chan = ctx._send_chan
|
||||||
|
|
Loading…
Reference in New Issue