Skip to content

Commit

Permalink
Ping failure log decreased level.
Browse files Browse the repository at this point in the history
  • Loading branch information
pwalski committed Jan 23, 2024
1 parent d49ba3b commit 29d5727
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/process/automatic/monitor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ fn spawn_api_pinger() -> JoinHandle<()> {
log::trace!("Pinging API");
match client.send().await {
Ok(response) => log::trace!("Ping respone: {response:?}"),
Err(err) => log::debug!("Ping error: {err:?}"),
Err(err) => log::warn!("Ping failure: {err:?}"),
};
tokio::time::sleep(_API_PING_DELAY).await;
}
Expand Down

0 comments on commit 29d5727

Please sign in to comment.