|
@@ -13,6 +13,7 @@ Vue.config.errorHandler = (error) => {
|
|
|
errorMessage: error.message,
|
|
|
errorStack: error.stack,
|
|
|
});
|
|
|
+ console.trace(error);
|
|
|
throw error;
|
|
|
};
|
|
|
|
|
@@ -38,6 +39,7 @@ window.addEventListener("error", function (event) {
|
|
|
errorLineNo: event.error.lineno,
|
|
|
errorColNo: event.error.colno,
|
|
|
});
|
|
|
+ console.trace(event);
|
|
|
});
|
|
|
|
|
|
window.addEventListener("unhandledrejection", function (event) {
|
|
@@ -66,6 +68,7 @@ window.addEventListener("unhandledrejection", function (event) {
|
|
|
reason: event.reason,
|
|
|
reasonJson: JSON.stringify(event.reason),
|
|
|
});
|
|
|
+ console.trace(event);
|
|
|
if (
|
|
|
event.reason?.message?.includes("Box.constructor") ||
|
|
|
event.reason?.message?.includes("Error: toNetInput")
|