Skip to content

Commit

Permalink
Merge pull request #15 from sebadob/reduced-logging
Browse files Browse the repository at this point in the history
move more logging from info to debug
  • Loading branch information
sebadob committed May 13, 2024
2 parents eb8e0f0 + dbe4034 commit c87b966
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ async fn run_client(
continue;
}
let channel = chan_res.unwrap().ready_oneshot().await?;
info!(
debug!(
"Cache connection channel established successfully to host '{}'",
host
);
Expand Down Expand Up @@ -813,6 +813,8 @@ async fn run_client(
}

Err(err) => {
// TODO push this into the debug level after enough testing
// -> duplicate logging with the error a few lines below
error!(
"Received an error in client receiver for Host {} - exiting: {:?}",
host, err
Expand Down

0 comments on commit c87b966

Please sign in to comment.