js: Remove debug message about what the interpreter returned

If you want to see what the interpreter returned, use "js -l" :^)
This commit is contained in:
Andreas Kling 2020-03-25 09:48:37 +01:00
parent e34fe556ca
commit 2fc56abd4b
Notes: sideshowbarker 2024-07-19 08:08:32 +09:00

View File

@ -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());