From 9f82ba58cdcbb8d55677622d90a6f36d66a8ee29 Mon Sep 17 00:00:00 2001 From: Jake Stanger Date: Sun, 23 Oct 2022 17:18:49 +0100 Subject: [PATCH] chore: cleanup println --- src/modules/custom.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/modules/custom.rs b/src/modules/custom.rs index f284cca..a0c20b3 100644 --- a/src/modules/custom.rs +++ b/src/modules/custom.rs @@ -163,7 +163,6 @@ impl Module 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..]) {