LibGfx: Remove debug spam about successful font lookups

This commit is contained in:
Andreas Kling 2020-11-07 14:23:31 +01:00
parent 43ff2ea8d8
commit 508063ef85
Notes: sideshowbarker 2024-07-19 01:31:52 +09:00

View File

@ -103,7 +103,6 @@ RefPtr<Gfx::Font> FontDatabase::get_by_name(const StringView& name)
dbgln("Font lookup failed: '{}'", name);
return nullptr;
}
dbgln("Font lookup succeeded: '{}'", name);
return it->value;
}