This commit is contained in:
Mitchell McCaffrey 2021-03-15 12:46:14 +11:00
parent bc23fffa27
commit 8cc0a8d7b3

View File

@ -11,6 +11,12 @@ import * as serviceWorker from "./serviceWorker";
import "./index.css"; import "./index.css";
console.log(
"env",
process.env,
"logging",
process.env.REACT_APP_LOGGING === "true"
);
if (process.env.REACT_APP_LOGGING === "true") { if (process.env.REACT_APP_LOGGING === "true") {
Sentry.init({ Sentry.init({
dsn: dsn:
@ -28,7 +34,9 @@ if (process.env.REACT_APP_LOGGING === "true") {
"XDR encoding failure", "XDR encoding failure",
"Assertion failed: Input argument is not an HTMLInputElement", "Assertion failed: Input argument is not an HTMLInputElement",
"Extension context invalidated", "Extension context invalidated",
new RegExp("([InvalidStateError:\\s]*Failed to execute 'transaction' on 'IDBDatabase': The database connection is closing([.]*[\\s]*))+"), new RegExp(
"([InvalidStateError:\\s]*Failed to execute 'transaction' on 'IDBDatabase': The database connection is closing([.]*[\\s]*))+"
),
// Random plugins/extensions // Random plugins/extensions
"top.GLOBALS", "top.GLOBALS",
// See: http://blog.errorception.com/2012/03/tale-of-unfindable-js-error.html // See: http://blog.errorception.com/2012/03/tale-of-unfindable-js-error.html