diff --git a/Userland/Libraries/LibGfx/FontDatabase.cpp b/Userland/Libraries/LibGfx/FontDatabase.cpp index 5bd687472d..c06fd0ebba 100644 --- a/Userland/Libraries/LibGfx/FontDatabase.cpp +++ b/Userland/Libraries/LibGfx/FontDatabase.cpp @@ -31,7 +31,6 @@ #include #include #include -#include #include #include @@ -159,7 +158,6 @@ RefPtr FontDatabase::get_by_name(const StringView& name) RefPtr FontDatabase::get(const String& family, unsigned size, unsigned weight) { - dbgln("FontDatabase: Request font {} {} {}", family, size, weight); for (auto typeface : m_private->typefaces) { if (typeface->family() == family && typeface->weight() == weight) return typeface->get_font(size); @@ -169,7 +167,6 @@ RefPtr FontDatabase::get(const String& family, unsigned size, unsigne RefPtr FontDatabase::get(const String& family, const String& variant, unsigned size) { - dbgln("FontDatabase: Request font {} {} {}", family, variant, size); for (auto typeface : m_private->typefaces) { if (typeface->family() == family && typeface->variant() == variant) return typeface->get_font(size);