1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:47:35 +00:00

LibGfx: Remove debug spam about not having some font installed

This commit is contained in:
Andreas Kling 2021-09-23 13:12:59 +02:00
parent d7586aff53
commit 30979c1956

View file

@ -159,7 +159,6 @@ RefPtr<Gfx::Font> FontDatabase::get(const String& family, unsigned size, unsigne
if (typeface->family() == family && typeface->weight() == weight)
return typeface->get_font(size);
}
dbgln("Failed to get font: '{} {} {}'", family, size, weight);
return nullptr;
}