[Chore]: Remove console.log()

This commit is contained in:
ClaraCrazy 2026-01-05 08:48:13 +01:00
parent a7691ccf43
commit d06ac6210f
No known key found for this signature in database
GPG key ID: EBBC896ACB497011

View file

@ -301,8 +301,6 @@ class ImapService extends EventEmitter {
toDelete.forEach(uid => { toDelete.forEach(uid => {
this.emit(ImapService.EVENT_DELETED_MAIL, 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_INITIAL_LOAD_DONE = 'initial load done'
ImapService.EVENT_ERROR = 'error' ImapService.EVENT_ERROR = 'error'
module.exports = ImapService module.exports = ImapService