chore: cleanup println

This commit is contained in:
Jake Stanger
2022-10-23 17:18:49 +01:00
parent a93700e8fd
commit 9f82ba58cd

View File

@@ -163,7 +163,6 @@ impl Module<gtk::Box> for CustomModule {
) -> Result<()> {
spawn(async move {
while let Some(event) = rx.recv().await {
println!("{:?}", event);
if event.cmd.starts_with('!') {
debug!("executing command: '{}'", &event.cmd[1..]);
if let Err(err) = exec_command(&event.cmd[1..]) {