-
-
Notifications
You must be signed in to change notification settings - Fork 109
Open
Labels
Description
Is there an equivalent of dead letters in pykka?
I.e. ability to see all the message (at least in a log) that were not delivered anywhere?
Currently, I implement this as follows in my actor:
if message.get('command') == 'poll':
# logic
else:
logging.log(logging.DEBUG, 'Dead letters: ' + str(message))
Reactions are currently unavailable