diff options
author | Andreas Kling <kling@serenityos.org> | 2022-02-05 16:16:06 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-02-05 22:50:39 +0100 |
commit | 23795738fbb8a48c7798abffd403ef9ccd05ef78 (patch) | |
tree | bd4736abb5bae9067c64cc0b76e0b06e7f3cd622 /Userland/Applications | |
parent | 1d411a46c19149086d34f15d59c8c370bf558e87 (diff) | |
download | serenity-23795738fbb8a48c7798abffd403ef9ccd05ef78.zip |
Browser: Don't log every content filter string when loaded
Diffstat (limited to 'Userland/Applications')
-rw-r--r-- | Userland/Applications/Browser/main.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Applications/Browser/main.cpp b/Userland/Applications/Browser/main.cpp index 413bb68059..9281b4b8cd 100644 --- a/Userland/Applications/Browser/main.cpp +++ b/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); } |