Skip to content

Commit

Permalink
Dev: Don't use console.ls
Browse files Browse the repository at this point in the history
  • Loading branch information
olleharstedt committed Feb 19, 2021
1 parent f1db5a9 commit 7a7267e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application/core/plugins/UpdateCheck/assets/js/updateCheck.js
Expand Up @@ -6,11 +6,11 @@ $(document).ready(function () {
data: {},
method: 'GET',
success: function (response) {
console.ls.log(response);
console.log(response);
LS.updateNotificationWidget(notificationUpdateUrl, false);
},
error : function (arguments) {
console.ls.log(arguments);
console.log(arguments);
}
});
});

0 comments on commit 7a7267e

Please sign in to comment.