From 30868de6046dbce0432280c7d3c18132466fffd1 Mon Sep 17 00:00:00 2001 From: elkowar <5300871+elkowar@users.noreply.github.com> Date: Mon, 23 Aug 2021 10:15:17 +0200 Subject: [PATCH] fix(logs): remove variable updates from info logs --- crates/eww/src/ipc_server.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/eww/src/ipc_server.rs b/crates/eww/src/ipc_server.rs index 2faadfe..e020b0c 100644 --- a/crates/eww/src/ipc_server.rs +++ b/crates/eww/src/ipc_server.rs @@ -31,7 +31,7 @@ async fn handle_connection(mut stream: tokio::net::UnixStream, evt_send: Unbound let action: opts::ActionWithServer = read_action_from_stream(&mut stream_read).await?; - log::info!("received command from IPC: {:?}", &action); + log::debug!("received command from IPC: {:?}", &action); let (command, maybe_response_recv) = action.into_daemon_command();