From d06ac6210f6fa45da4252bdd4a7253b6a86494b3 Mon Sep 17 00:00:00 2001 From: ClaraCrazy Date: Mon, 5 Jan 2026 08:48:13 +0100 Subject: [PATCH] [Chore]: Remove console.log() --- application/imap-service.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/application/imap-service.js b/application/imap-service.js index 37877f9..16a0d39 100644 --- a/application/imap-service.js +++ b/application/imap-service.js @@ -301,8 +301,6 @@ class ImapService extends EventEmitter { toDelete.forEach(uid => { this.emit(ImapService.EVENT_DELETED_MAIL, uid); }); - - console.log(`Deleted ${toDelete.length} old messages.`); } @@ -489,4 +487,4 @@ ImapService.EVENT_DELETED_MAIL = 'mailDeleted' ImapService.EVENT_INITIAL_LOAD_DONE = 'initial load done' ImapService.EVENT_ERROR = 'error' -module.exports = ImapService +module.exports = ImapService \ No newline at end of file