diff options
author | TheFightingCatfish <seekingblues@gmail.com> | 2021-08-07 16:37:26 +0800 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-08-08 00:33:14 +0200 |
commit | 652fa544952d58efa72e3d230f09404ccc9fab3e (patch) | |
tree | 7f6f32e565e167b75c8b133c21b77f5428059933 /Userland/Applications | |
parent | e80b887059a487f560e4c0408f1cf0c480461d9c (diff) | |
download | serenity-652fa544952d58efa72e3d230f09404ccc9fab3e.zip |
Browser+LibWeb: Silence some debug spams
Diffstat (limited to 'Userland/Applications')
-rw-r--r-- | Userland/Applications/Browser/BrowserWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/Browser/BrowserWindow.cpp b/Userland/Applications/Browser/BrowserWindow.cpp index 4aafd3aea3..7b2743a812 100644 --- a/Userland/Applications/Browser/BrowserWindow.cpp +++ b/Userland/Applications/Browser/BrowserWindow.cpp @@ -560,7 +560,7 @@ void BrowserWindow::create_new_tab(URL url, bool activate) new_tab.load(url); - dbgln("Added new tab {:p}, loading {}", &new_tab, url); + dbgln_if(SPAM_DEBUG, "Added new tab {:p}, loading {}", &new_tab, url); if (activate) m_tab_widget->set_active_widget(&new_tab); |