Browse Source

Removes debug logging

pull/488/head
Michael Weimann 9 years ago
parent
commit
6fe04d05fd
  1. 1
      app/util/UnreadCounter.js

1
app/util/UnreadCounter.js

@ -49,7 +49,6 @@ Ext.define('Rambox.util.UnreadCounter', {
this.setUnreadCountForService = function(id, unreadCount) { this.setUnreadCountForService = function(id, unreadCount) {
unreadCount = parseInt(unreadCount, 10); unreadCount = parseInt(unreadCount, 10);
console.log('Rambox.util.UnreadCounter#setUnreadCountForService(' + id + ', ' + unreadCount + ')');
if (unreadCountByService.has(id)) { if (unreadCountByService.has(id)) {
totalUnreadCount -= unreadCountByService.get(id); totalUnreadCount -= unreadCountByService.get(id);
} }

Loading…
Cancel
Save