mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 17:07:34 +00:00
Everywhere: Replace a bundle of dbg with dbgln.
These changes are arbitrarily divided into multiple commits to make it easier to find potentially introduced bugs with git bisect.
This commit is contained in:
parent
3f23a58fa1
commit
24888457d5
9 changed files with 117 additions and 98 deletions
|
@ -195,7 +195,7 @@ OwnPtr<Messages::WindowServer::AddMenuItemResponse> ClientConnection::handle(con
|
|||
unsigned identifier = message.identifier();
|
||||
auto it = m_menus.find(menu_id);
|
||||
if (it == m_menus.end()) {
|
||||
dbg() << "AddMenuItem: Bad menu ID: " << menu_id;
|
||||
dbgln("AddMenuItem: Bad menu ID: {}", menu_id);
|
||||
return {};
|
||||
}
|
||||
auto& menu = *(*it).value;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue