소스 검색

LibGUI: Convert dbgprintf() => dbgln()

Andreas Kling 4 년 전
부모
커밋
304f0fe5ee
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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());
     auto* menu = Menu::from_menu_id(message.menu_id());
     if (!menu) {
     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;
         return;
     }
     }
     if (auto* action = menu->action_at(message.identifier()))
     if (auto* action = menu->action_at(message.identifier()))