From 37553a5fdd034c805e433417d3115db8efa21845 Mon Sep 17 00:00:00 2001 From: "Luke D. Jones" Date: Sun, 6 Nov 2022 22:28:00 +1300 Subject: [PATCH] Remove some dbg! statements --- rog-control-center/src/main.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/rog-control-center/src/main.rs b/rog-control-center/src/main.rs index 62222e3b..00044cbc 100644 --- a/rog-control-center/src/main.rs +++ b/rog-control-center/src/main.rs @@ -91,11 +91,9 @@ fn main() -> Result<()> { let states = setup_page_state_and_notifs(layout.clone(), &config, native_options.clone(), &dbus).unwrap(); loop { - dbg!(); if !start_closed { start_app(states.clone(), native_options.clone())?; } - dbg!(); let config = Config::load().unwrap(); if !config.run_in_background { @@ -108,11 +106,9 @@ fn main() -> Result<()> { // process writes to the IPC (so there is data to actually read) if get_ipc_file().unwrap().read(&mut buf).is_ok() && buf[0] == SHOW_GUI { start_closed = false; - dbg!(); continue; } } - dbg!(); } Ok(()) }