From 7d6a43e091a67847d6406ce6a1683d77331a2126 Mon Sep 17 00:00:00 2001 From: Juan Cruz Viotti Date: Tue, 19 Jan 2016 10:25:13 -0400 Subject: [PATCH] Make use of LoggerService in reselection routines --- build/browser/app.js | 4 ++-- lib/browser/app.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/build/browser/app.js b/build/browser/app.js index cb7afe27..3e9fab01 100644 --- a/build/browser/app.js +++ b/build/browser/app.js @@ -106,7 +106,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() { @@ -115,7 +115,7 @@ app.controller('AppController', function($q, DriveScannerService, SelectionState } self.selection.removeDrive(); - console.debug('Reselecting drive'); + LoggerService.debug('Reselecting drive'); }; this.burn = function(image, drive) { diff --git a/lib/browser/app.js b/lib/browser/app.js index 7636928a..dab448ff 100644 --- a/lib/browser/app.js +++ b/lib/browser/app.js @@ -105,7 +105,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() { @@ -114,7 +114,7 @@ app.controller('AppController', function($q, DriveScannerService, SelectionState } self.selection.removeDrive(); - console.debug('Reselecting drive'); + LoggerService.debug('Reselecting drive'); }; this.burn = function(image, drive) {