From ddb240c6d7513862af9b1495a7645ee207a096f5 Mon Sep 17 00:00:00 2001 From: Julian Ospald Date: Mon, 10 Feb 2020 23:03:27 +0100 Subject: [PATCH] Remove stray logs --- src/main.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index d0835b3..5c9dbc0 100644 --- a/src/main.rs +++ b/src/main.rs @@ -351,11 +351,8 @@ fn rename_workspaces(con: Arc>) -> Result<()> { let mut n: u32 = 1; let tree = c.get_tree()?; let workspaces: Vec<&i3ipc::reply::Node> = find_workspaces(&tree); - info!("{:?}", workspaces); - info!("{:?}", workspaces.len()); for (ws_index, workspace) in workspaces.iter().enumerate() { - info!("ws_index: {}", ws_index); if ws_index >= ws_infos.len() { break; }