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

@@ -367,7 +367,6 @@ Module.register("newsfeed",{
},
notificationReceived: function(notification, payload, sender) {
Log.info(this.name + " - received notification: " + notification);
if(notification === "ARTICLE_NEXT"){
var before = this.activeItem;
this.activeItem++;
@@ -425,8 +424,6 @@ Module.register("newsfeed",{
desc: this.newsItems[this.activeItem].description,
url: this.getActiveItemURL()
});
} else {
Log.info(this.name + " - unknown notification, ignoring: " + notification);
}
},