LibJS: Hide some debug output behind flags

This hides some Object.cpp output, as well as removing the "debugger"
debug output.
This commit is contained in:
Matthew Olsson 2020-07-03 22:46:12 -07:00 committed by Andreas Kling
commit 5e971c91e3
Notes: sideshowbarker 2024-07-19 05:04:56 +09:00
2 changed files with 21 additions and 1 deletions

View file

@ -1969,7 +1969,7 @@ Value SequenceExpression::execute(Interpreter& interpreter, GlobalObject& global
Value DebuggerStatement::execute(Interpreter&, GlobalObject&) const
{
dbg() << "Sorry, no JavaScript debugger available (yet)!";
// Sorry, no JavaScript debugger available (yet)!
return js_undefined();
}