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 5a3460e commit 2c3d5c4Copy full SHA for 2c3d5c4
src/worker/index.ts
@@ -100,9 +100,10 @@ function postUncaughtErrorMessage(error: Error) {
100
} catch (subError) {
101
// tslint:disable-next-line no-console
102
console.error(
103
- "Not reporting uncaught error back to master thread as it occured while " +
104
- "reporting an uncaught error already. Latest error:",
105
- subError
+ "Not reporting uncaught error back to master thread as it " +
+ "occured while reporting an uncaught error already." +
+ "\nLatest error:", subError,
106
+ "\nOriginal error:", error
107
)
108
}
109
0 commit comments