mirror of
https://github.com/zulip/zulip.git
synced 2025-10-28 18:43:52 +00:00
queue_processors: Remove unnecessary spammy logging output.
This logging statement was incorrectly not removed before merging
5cec566cb9.
This commit is contained in:
@@ -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" %
|
||||
|
||||
Reference in New Issue
Block a user