Skip to content

Commit

Permalink
Remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
werthdavid committed Feb 26, 2018
1 parent b3ec02d commit 7b7bf83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/modules/ngx-zxing/browser-code-reader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ export class BrowserCodeReader {

} catch (re) {

console.log(retryIfChecksumOrFormatError, re);
console.debug(retryIfChecksumOrFormatError, re);

if (retryIfNotFound && Exception.isOfType(re, Exception.NotFoundException)) {
console.warn('Not found, trying again...');
Expand All @@ -207,7 +207,7 @@ export class BrowserCodeReader {
Exception.isOfType(re, Exception.FormatException)
)
) {
console.log('Checksum or format error, trying again...', re);
console.debug('Checksum or format error, trying again...', re);

this.decodeWithDelay(callbackFn);
}
Expand Down

0 comments on commit 7b7bf83

Please sign in to comment.