Remove logging.

This commit is contained in:
Michael Teeuw
2020-02-01 19:12:05 +01:00
parent 1315aceb44
commit 561827e896
4 changed files with 4 additions and 8 deletions

View File

@@ -151,9 +151,9 @@ var Module = Class.extend({
*/
notificationReceived: function (notification, payload, sender) {
if (sender) {
Log.log(this.name + " received a module notification: " + notification + " from sender: " + sender.name);
// Log.log(this.name + " received a module notification: " + notification + " from sender: " + sender.name);
} else {
Log.log(this.name + " received a system notification: " + notification);
// Log.log(this.name + " received a system notification: " + notification);
}
},