mirror of
https://github.com/retoaccess1/haveno-reto.git
synced 2024-12-11 20:33:32 +01:00
do not log batch processing 0 mailbox entries
This commit is contained in:
parent
332da7535d
commit
6ed969addc
@ -414,9 +414,11 @@ public class MailboxMessageService implements HashMapChangedListener, PersistedD
|
|||||||
new Thread(() -> {
|
new Thread(() -> {
|
||||||
try {
|
try {
|
||||||
var mailboxItems = getMailboxItems(protectedMailboxStorageEntries);
|
var mailboxItems = getMailboxItems(protectedMailboxStorageEntries);
|
||||||
log.info("Batch processing of {} mailbox entries took {} ms",
|
|
||||||
protectedMailboxStorageEntries.size(),
|
if (!protectedMailboxStorageEntries.isEmpty())
|
||||||
System.currentTimeMillis() - ts);
|
log.info("Batch processing of {} mailbox entries took {} ms",
|
||||||
|
protectedMailboxStorageEntries.size(),
|
||||||
|
System.currentTimeMillis() - ts);
|
||||||
future.set(mailboxItems);
|
future.set(mailboxItems);
|
||||||
|
|
||||||
} catch (Throwable throwable) {
|
} catch (Throwable throwable) {
|
||||||
|
Loading…
Reference in New Issue
Block a user