Explorar o código

LibGUI: Convert dbgprintf() => dbgln()

Andreas Kling %!s(int64=4) %!d(string=hai) anos
pai
achega
304f0fe5ee
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      Userland/Libraries/LibGUI/WindowServerConnection.cpp

+ 1 - 1
Userland/Libraries/LibGUI/WindowServerConnection.cpp

@@ -256,7 +256,7 @@ void WindowServerConnection::handle(const Messages::WindowClient::MenuItemActiva
 {
     auto* menu = Menu::from_menu_id(message.menu_id());
     if (!menu) {
-        dbgprintf("EventLoop received event for invalid menu ID %d\n", message.menu_id());
+        dbgln("EventLoop received event for invalid menu ID {}", message.menu_id());
         return;
     }
     if (auto* action = menu->action_at(message.identifier()))