Skip to content

Commit 93af901

Browse files
committed
comment out console.logs for now, want to make this file happy
1 parent b19e7c8 commit 93af901

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/feedback-async/src/integration.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ export class FeedbackAsync implements Integration {
186186
this._createWidget(this.options);
187187
} catch (err) {
188188
DEBUG_BUILD && logger.error(err);
189-
console.log(err);
189+
console.log(err); // eslint-disable-line no-console
190190
}
191191
}
192192

@@ -246,7 +246,7 @@ export class FeedbackAsync implements Integration {
246246
});
247247
} catch (err) {
248248
DEBUG_BUILD && logger.error(err);
249-
console.log(err);
249+
console.log(err); // eslint-disable-line no-console
250250
return null;
251251
}
252252
}
@@ -261,7 +261,7 @@ export class FeedbackAsync implements Integration {
261261
return this._createWidget(mergeOptions(this.options, optionOverrides || {}));
262262
} catch (err) {
263263
DEBUG_BUILD && logger.error(err);
264-
console.log(err);
264+
console.log(err); // eslint-disable-line no-console
265265
return null;
266266
}
267267
}
@@ -288,7 +288,7 @@ export class FeedbackAsync implements Integration {
288288
return true;
289289
}
290290
} catch (err) {
291-
console.log(err);
291+
console.log(err); // eslint-disable-line no-console
292292
DEBUG_BUILD && logger.error(err);
293293
}
294294

0 commit comments

Comments
 (0)