diff options
author | Matthew Olsson <matthewcolsson@gmail.com> | 2020-07-03 22:46:12 -0700 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-07-06 23:40:35 +0200 |
commit | 5e971c91e3c69460f14f0b5f3e35af16ce9b018f (patch) | |
tree | 53dc387e7242fdf40881fe185bf3bbfba4761aed /Libraries/LibJS/AST.cpp | |
parent | 449a1cf3a28f58d761fddcd0f1c7fff0c7591c79 (diff) | |
download | serenity-5e971c91e3c69460f14f0b5f3e35af16ce9b018f.zip |
LibJS: Hide some debug output behind flags
This hides some Object.cpp output, as well as removing the "debugger"
debug output.
Diffstat (limited to 'Libraries/LibJS/AST.cpp')
-rw-r--r-- | Libraries/LibJS/AST.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibJS/AST.cpp b/Libraries/LibJS/AST.cpp index 183d747adb..8eb975359a 100644 --- a/Libraries/LibJS/AST.cpp +++ b/Libraries/LibJS/AST.cpp @@ -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(); } |