Browse Source

SystemMenu: Silence debug spam on startup

Andreas Kling 5 years ago
parent
commit
21c78e2fc3
1 changed files with 4 additions and 0 deletions
  1. 4 0
      Applications/SystemMenu/main.cpp

+ 4 - 0
Applications/SystemMenu/main.cpp

@@ -40,6 +40,8 @@
 #include <sys/utsname.h>
 #include <unistd.h>
 
+//#define SYSTEM_MENU_DEBUG
+
 struct AppMetadata {
     String executable;
     String name;
@@ -136,8 +138,10 @@ NonnullRefPtr<GUI::Menu> build_system_menu()
         if (!app.icon_path.is_empty())
             icon = Gfx::Bitmap::load_from_file(app.icon_path);
 
+#ifdef SYSTEM_MENU_DEBUG
         if (icon)
             dbg() << "App " << app.name << " has icon with size " << icon->size();
+#endif
 
         auto parent_menu = g_app_category_menus.get(app.category).value_or(*system_menu);
         parent_menu->add_action(GUI::Action::create(app.name, icon.ptr(), [app_identifier](auto&) {