Browse Source

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

Andreas Kling 3 years ago
parent
commit
23795738fb
1 changed files with 0 additions and 1 deletions
  1. 0 1
      Userland/Applications/Browser/main.cpp

+ 0 - 1
Userland/Applications/Browser/main.cpp

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