Merge pull request #102 from resin-io/fix/use-logger-service

Make use of LoggerService in reselection routines
This commit is contained in:
Juan Cruz Viotti 2016-01-19 10:31:35 -04:00
commit 4ab2dc1948
2 changed files with 4 additions and 4 deletions

View File

@ -113,7 +113,7 @@ app.controller('AppController', function($q, DriveScannerService, SelectionState
// "returns" to the first step.
self.selection.clear();
console.debug('Reselecting image');
LoggerService.debug('Reselecting image');
};
this.reselectDrive = function() {
@ -122,7 +122,7 @@ app.controller('AppController', function($q, DriveScannerService, SelectionState
}
self.selection.removeDrive();
console.debug('Reselecting drive');
LoggerService.debug('Reselecting drive');
};
this.burn = function(image, drive) {

View File

@ -112,7 +112,7 @@ app.controller('AppController', function($q, DriveScannerService, SelectionState
// "returns" to the first step.
self.selection.clear();
console.debug('Reselecting image');
LoggerService.debug('Reselecting image');
};
this.reselectDrive = function() {
@ -121,7 +121,7 @@ app.controller('AppController', function($q, DriveScannerService, SelectionState
}
self.selection.removeDrive();
console.debug('Reselecting drive');
LoggerService.debug('Reselecting drive');
};
this.burn = function(image, drive) {