From bb57bc1b42d0613dd8d5e7d1e9ac950925765ce3 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 15 Mar 2020 17:20:12 +0100 Subject: [PATCH] LibJS: Remove debug spam in Object::get() --- Libraries/LibJS/Object.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Libraries/LibJS/Object.cpp b/Libraries/LibJS/Object.cpp index 5669e77930..5f89aa6941 100644 --- a/Libraries/LibJS/Object.cpp +++ b/Libraries/LibJS/Object.cpp @@ -46,7 +46,6 @@ Value Object::get(String property_name) const { const Object* object = this; while (object) { - dbg() << "Object::get() trying '" << property_name << "' in " << object->class_name(); auto value = object->m_properties.get(property_name); if (value.has_value()) return value.value();