1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 17:15:09 +00:00

Browser+LibWeb: Silence some debug spams

This commit is contained in:
TheFightingCatfish 2021-08-07 16:37:26 +08:00 committed by Andreas Kling
parent e80b887059
commit 652fa54495
3 changed files with 9 additions and 9 deletions

View file

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