Log which missedmessage events are received

(imported from commit b0b662e97fd9199644c7cf1ac7bc11e6c4d25376)
This commit is contained in:
Leo Franchi 2013-05-08 14:59:29 -04:00 committed by Tim Abbott
parent b9a39d7982
commit cb8e1147e2
1 changed files with 1 additions and 0 deletions

View File

@ -19,6 +19,7 @@ class Command(BaseCommand):
by_recipient = defaultdict(list)
for event in missed_events:
print "Received missed message event: %s" % (event,)
by_recipient[event['user_profile_id']].append(event)
for user_profile_id, events in by_recipient.items():