summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-03-24 22:03:01 +0100
committerAndreas Kling <kling@serenityos.org>2020-03-24 22:21:58 +0100
commitdb024a9cb147731cfb14ef60a862a3e392eedc9b (patch)
tree2a8b15646b2e2b24310974ec75b7b00e554f9652
parentbca57625429fe099df8cbffe24deb11f7536ea1b (diff)
downloadserenity-db024a9cb147731cfb14ef60a862a3e392eedc9b.zip
LibJS: Remove debug spam in Error.prototype.name
-rw-r--r--Libraries/LibJS/Runtime/ErrorPrototype.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/Libraries/LibJS/Runtime/ErrorPrototype.cpp b/Libraries/LibJS/Runtime/ErrorPrototype.cpp
index 27b396f211..165dd2d9e7 100644
--- a/Libraries/LibJS/Runtime/ErrorPrototype.cpp
+++ b/Libraries/LibJS/Runtime/ErrorPrototype.cpp
@@ -38,7 +38,6 @@ ErrorPrototype::ErrorPrototype()
{
put_native_property(
"name", [](Object* this_object) {
- dbg() << "Error.prototype.name on " << this_object;
ASSERT(this_object);
ASSERT(this_object->is_error());
return js_string(this_object->heap(), static_cast<const Error*>(this_object)->name());