From b6eac2e386e45019024c597007ae54feb0ed47bc Mon Sep 17 00:00:00 2001 From: Daniel Puscher Date: Tue, 20 Jun 2017 09:15:35 +0200 Subject: [PATCH] Remove unnecessary console log output --- lib/notifications.js | 1 - src/notifications.js | 1 - 2 files changed, 2 deletions(-) diff --git a/lib/notifications.js b/lib/notifications.js index 277ee4d..3b58f11 100644 --- a/lib/notifications.js +++ b/lib/notifications.js @@ -70,7 +70,6 @@ var Notifications = function (_React$Component) { /// and remove all where uid is not found in the reducer systemNotifications.forEach(function (notification) { if (notificationIds.indexOf(notification.uid) < 0) { - console.log('removing', _this2.system().state.notifications); _this2.system().removeNotification(notification.uid); } }); diff --git a/src/notifications.js b/src/notifications.js index ed1f5b3..066654a 100644 --- a/src/notifications.js +++ b/src/notifications.js @@ -22,7 +22,6 @@ class Notifications extends React.Component { /// and remove all where uid is not found in the reducer (systemNotifications).forEach(notification => { if (notificationIds.indexOf(notification.uid) < 0) { - console.log('removing', this.system().state.notifications); this.system().removeNotification(notification.uid); } });