fix(logs): remove variable updates from info logs

This commit is contained in:
elkowar 2021-08-23 10:15:17 +02:00
parent bbcc8a3d29
commit 30868de604
No known key found for this signature in database
GPG key ID: E321AD71B1D1F27F

View file

@ -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?; 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(); let (command, maybe_response_recv) = action.into_daemon_command();