1
0
Fork 0
mirror of https://github.com/Zedfrigg/ironbar.git synced 2025-07-01 10:41:03 +02:00

chore: cleanup println

This commit is contained in:
Jake Stanger 2022-10-23 17:18:49 +01:00
parent a93700e8fd
commit 9f82ba58cd
No known key found for this signature in database
GPG key ID: C51FC8F9CB0BEA61

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..]) {