diff options
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); |