Skip to content

Commit

Permalink
Remove debug info
Browse files Browse the repository at this point in the history
  • Loading branch information
Ximi1970 committed Nov 7, 2023
1 parent e17e074 commit 311dacc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions webext/js/defaults.js
Original file line number Diff line number Diff line change
Expand Up @@ -475,8 +475,8 @@ const sendMailCountPre115 = () => {
//console.debug("Filters: " + JSON.stringify(SysTrayX.Messaging.filters));
//console.debug("New: " + JSON.stringify(SysTrayX.Messaging.new));

console.debug("sendMailCountPre115 Unread: " + unreadCount);
console.debug("sendMailCountPre115 New: " + newCount);
//console.debug("sendMailCountPre115 Unread: " + unreadCount);
//console.debug("sendMailCountPre115 New: " + newCount);

SysTrayX.Link.postSysTrayXMessage( { mailCount: { unread: unreadCount, new: newCount } } );
}
Expand Down Expand Up @@ -562,8 +562,8 @@ const sendMailCount = async () => {
}
}

console.debug("sendMailCount Unread: " + unreadCount);
console.debug("sendMailCount New: " + newCount);
//console.debug("sendMailCount Unread: " + unreadCount);
//console.debug("sendMailCount New: " + newCount);

SysTrayX.Link.postSysTrayXMessage( { mailCount: { unread: unreadCount, new: newCount } } );
}
Expand Down

0 comments on commit 311dacc

Please sign in to comment.