Skip to content

Commit

Permalink
Change warnings to info
Browse files Browse the repository at this point in the history
  • Loading branch information
olsh committed Jun 3, 2017
1 parent 792e81f commit 52dcaa3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/scripts/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ function makeMarkersRequest(parameters){
return unreadFeedsCount;
})
.catch(function () {
console.warn("Unable to load subscriptions.");
console.info("Unable to load subscriptions.");
});
} else {
for (let unreadCount of unreadCounts) {
Expand All @@ -507,7 +507,7 @@ function makeMarkersRequest(parameters){
}
}).then(setBadgeCounter)
.catch(function () {
console.warn("Unable to load counters.");
console.info("Unable to load counters.");
});
}

Expand Down Expand Up @@ -581,7 +581,7 @@ function updateFeeds(silentUpdate) {
}
})
.catch(function () {
console.warn("Unable to update feeds.");
console.info("Unable to update feeds.");

return Promise.resolve();
});
Expand Down

0 comments on commit 52dcaa3

Please sign in to comment.