Less logging

This commit is contained in:
peteruithoven 2014-01-20 12:58:21 +01:00
parent e1206f73d4
commit 58eec424df
1 changed files with 2 additions and 2 deletions

View File

@ -271,7 +271,7 @@ function Printer() {
clearTimeout(self.retryCheckStatusDelay);
}
this.checkStatus = function() {
console.log("Printer:checkStatus");
//console.log("Printer:checkStatus");
this.stateOverruled = false;
//console.log(" stateOverruled: ",this.stateOverruled);
var self = this;
@ -302,7 +302,7 @@ function Printer() {
}
}
this.handleStatusUpdate = function(response) {
console.log("Printer:handleStatusUpdate response: ",response);
//console.log("Printer:handleStatusUpdate response: ",response);
var data = response.data;
if(response.status != "success") {
self.state = Printer.UNKNOWN_STATE;