fixed debug output
This commit is contained in:
@@ -154,7 +154,7 @@ public class ImapClient {
|
||||
Date receivedDate = message.getReceivedDate();
|
||||
Duration duration = Duration.between(receivedDate.toInstant(),now.toInstant());
|
||||
var days = duration.toDays();
|
||||
LOG.info("Message {} is {} days old!",days);
|
||||
LOG.info("Message {} is {} days old!",message.getSubject(),days);
|
||||
if (days > holdTime){
|
||||
Folder folder = message.getFolder();
|
||||
if (!folder.isOpen()) folder.open(Folder.READ_WRITE);
|
||||
|
||||
Reference in New Issue
Block a user