Skip to content

Commit 9968158

Browse files
dpuschergor181
authored andcommitted
Remove unnecessary console log output (#35)
1 parent bbe1833 commit 9968158

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

lib/notifications.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ var Notifications = function (_React$Component) {
7070
/// and remove all where uid is not found in the reducer
7171
systemNotifications.forEach(function (notification) {
7272
if (notificationIds.indexOf(notification.uid) < 0) {
73-
console.log('removing', _this2.system().state.notifications);
7473
_this2.system().removeNotification(notification.uid);
7574
}
7675
});

src/notifications.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ class Notifications extends React.Component {
2222
/// and remove all where uid is not found in the reducer
2323
(systemNotifications).forEach(notification => {
2424
if (notificationIds.indexOf(notification.uid) < 0) {
25-
console.log('removing', this.system().state.notifications);
2625
this.system().removeNotification(notification.uid);
2726
}
2827
});

0 commit comments

Comments
 (0)