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

Browser: Don't log every content filter string when loaded

This commit is contained in:
Andreas Kling 2022-02-05 16:16:06 +01:00
parent 1d411a46c1
commit 23795738fb

View file

@ -40,7 +40,6 @@ static ErrorOr<void> load_content_filters()
while (TRY(ad_filter_list->can_read_line())) {
auto length = TRY(ad_filter_list->read_line(buffer));
StringView line { buffer.data(), length };
dbgln("Content filter for {}", line);
if (!line.is_empty())
Browser::g_content_filters.append(line);
}