1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-20 12:05:07 +00:00

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

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;
}