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 af94a86 commit d288c09Copy full SHA for d288c09
rt/src/Scheduler.mts
@@ -285,7 +285,10 @@ export class Scheduler implements SchedulerInterface {
285
console.log("--- Schedule module caught an internal exception ---");
286
console.log("--- The following output may help identify a bug in the runtime ---");
287
console.log("Destination function\n", dest);
288
- this.__currentThread.showStack();
+
289
+ if (showStack) {
290
+ this.__currentThread.showStack();
291
+ }
292
throw e;
293
}
294
0 commit comments