From 2fc56abd4b3f49ef9665b1df12895f8abcf049d9 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 25 Mar 2020 09:48:37 +0100 Subject: [PATCH] js: Remove debug message about what the interpreter returned If you want to see what the interpreter returned, use "js -l" :^) --- Userland/js.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Userland/js.cpp b/Userland/js.cpp index defc51d3b8..583940b67c 100644 --- a/Userland/js.cpp +++ b/Userland/js.cpp @@ -80,7 +80,6 @@ int main(int argc, char** argv) program->dump(0); auto result = interpreter.run(*program); - dbg() << "Interpreter returned " << result; if (print_last_result) printf("%s\n", result.to_string().characters());