From a5d4136da620f253723bfabbd70b27402b580096 Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Tue, 9 Apr 2024 18:35:09 +0200 Subject: [PATCH] Less verbose exception message in rustc.html --- examples/rustc.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/rustc.html b/examples/rustc.html index 3e46b63..902e2ec 100644 --- a/examples/rustc.html +++ b/examples/rustc.html @@ -131,7 +131,7 @@ }); term.writeln("\x1B[93mExecuting\x1B[0m"); console.log(inst.exports); - try { w.start(inst); } catch(e) { term.writeln("Exception: " + e.message); term.writeln("backtrace:"); term.writeln(e.stack); throw e; } + try { w.start(inst); } catch(e) { term.writeln("Exception: " + e.message); /*term.writeln("backtrace:"); term.writeln(e.stack);*/ } term.writeln("\x1B[92mDone\x1B[0m"); console.log(fds);