diff --git a/Applications/Browser/History.cpp b/Applications/Browser/History.cpp index 4f93a2dfed8..cecf28477ce 100644 --- a/Applications/Browser/History.cpp +++ b/Applications/Browser/History.cpp @@ -30,10 +30,10 @@ namespace Browser { void History::dump() const { - dbgf("Dump {} items(s)", m_items.size()); + dbgln("Dump {} items(s)", m_items.size()); int i = 0; for (auto& item : m_items) { - dbgf("[{}] {} {}", i, item, m_current == i ? '*' : ' '); + dbgln("[{}] {} {}", i, item, m_current == i ? '*' : ' '); ++i; } } diff --git a/Applications/Browser/main.cpp b/Applications/Browser/main.cpp index f9a3408bac3..e96a93fdceb 100644 --- a/Applications/Browser/main.cpp +++ b/Applications/Browser/main.cpp @@ -193,7 +193,7 @@ int main(int argc, char** argv) new_tab.load(url); - dbgf("Added new tab {:p}, loading {}", &new_tab, url); + dbgln("Added new tab {:p}, loading {}", &new_tab, url); if (activate) tab_widget.set_active_widget(&new_tab);