We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94fb8ab commit a6d8060Copy full SHA for a6d8060
src/app/modules/ngx-zxing/browser-code-reader.ts
@@ -194,7 +194,7 @@ export class BrowserCodeReader {
194
195
} catch (re) {
196
197
- console.log(retryIfChecksumOrFormatError, re);
+ console.debug(retryIfChecksumOrFormatError, re);
198
199
if (retryIfNotFound && Exception.isOfType(re, Exception.NotFoundException)) {
200
console.warn('Not found, trying again...');
@@ -207,7 +207,7 @@ export class BrowserCodeReader {
207
Exception.isOfType(re, Exception.FormatException)
208
)
209
) {
210
- console.log('Checksum or format error, trying again...', re);
+ console.warn('Checksum or format error, trying again...', re);
211
212
this.decodeWithDelay(callbackFn);
213
}
0 commit comments