1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:58:12 +00:00

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
parent 449a1cf3a2
commit 5e971c91e3
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();
}