RequestServer: Remove extra verbose disk cache log entry

This isn't particularly useful anymore, and is especially verbose for
large responses.
This commit is contained in:
Timothy Flynn 2025-10-24 13:19:42 -04:00 committed by Andreas Kling
parent dc10c28b57
commit 6cf22c424e

View file

@ -170,8 +170,6 @@ ErrorOr<void> CacheEntryWriter::write_data(ReadonlyBytes data)
m_cache_footer.data_size += data.size();
// FIXME: Update the crc.
dbgln("\033[36;1mSaved {} bytes for\033[0m {}", data.size(), m_url);
return {};
}