LibJS: Remove debug spam in Object::get()

This commit is contained in:
Andreas Kling 2020-03-15 17:20:12 +01:00
commit bb57bc1b42
Notes: sideshowbarker 2024-07-19 08:17:31 +09:00

View file

@ -46,7 +46,6 @@ Value Object::get(String property_name) const
{ {
const Object* object = this; const Object* object = this;
while (object) { while (object) {
dbg() << "Object::get() trying '" << property_name << "' in " << object->class_name();
auto value = object->m_properties.get(property_name); auto value = object->m_properties.get(property_name);
if (value.has_value()) if (value.has_value())
return value.value(); return value.value();