LibGfx: Remove debug output

This commit is contained in:
Peter Nelson 2020-04-25 14:10:39 +01:00 committed by Andreas Kling
parent 9a2c8102cd
commit a1c0eb1e1d

View file

@ -34,13 +34,11 @@ ImageDecoder::ImageDecoder(const u8* data, size_t size)
{
m_plugin = make<PNGImageDecoderPlugin>(data, size);
if (m_plugin->sniff()) {
dbg() << "Decoding image as a PNG";
return;
}
m_plugin = make<GIFImageDecoderPlugin>(data, size);
if (m_plugin->sniff()) {
dbg() << "Decoding image as a GIF";
return;
}
}