Browse Source

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

Andreas Kling 3 năm trước cách đây
mục cha
commit
23795738fb
1 tập tin đã thay đổi với 0 bổ sung1 xóa
  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);
     }