do not log batch processing 0 mailbox entries

This commit is contained in:
woodser 2023-04-26 10:11:38 -04:00
parent 332da7535d
commit 6ed969addc

View File

@ -414,9 +414,11 @@ public class MailboxMessageService implements HashMapChangedListener, PersistedD
new Thread(() -> {
try {
var mailboxItems = getMailboxItems(protectedMailboxStorageEntries);
log.info("Batch processing of {} mailbox entries took {} ms",
protectedMailboxStorageEntries.size(),
System.currentTimeMillis() - ts);
if (!protectedMailboxStorageEntries.isEmpty())
log.info("Batch processing of {} mailbox entries took {} ms",
protectedMailboxStorageEntries.size(),
System.currentTimeMillis() - ts);
future.set(mailboxItems);
} catch (Throwable throwable) {