queue_processors: Remove unnecessary spammy logging output.

This logging statement was incorrectly not removed before merging
5cec566cb9.
This commit is contained in:
Tim Abbott 2018-10-31 16:31:22 -07:00
parent ff2b496067
commit 48810f43be
1 changed files with 0 additions and 1 deletions

View File

@ -311,7 +311,6 @@ class MissedMessageWorker(QueueProcessingWorker):
current_time = time.time()
for user_profile_id, timestamp in list(self.batch_start_by_recipient.items()):
if current_time - timestamp < self.BATCH_DURATION:
logging.info("%s: %s - %s" % (user_profile_id, current_time, timestamp))
continue
events = self.events_by_recipient[user_profile_id]
logging.info("Batch-processing %s missedmessage_emails events for user %s" %