We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c6f443 commit 2d048b9Copy full SHA for 2d048b9
src/main.rs
@@ -159,7 +159,7 @@ async fn run_listener<T: Signer + 'static>(
159
let api_client = api_client.clone();
160
async move {
161
if let Err(e) = api_client.post_observation(observation).await {
162
- tracing::error!(url = api_client.get_base_url().to_string(), error = ?e, "Failed to post observation");
+ tracing::warn!(url = api_client.get_base_url().to_string(), error = ?e, "Failed to post observation");
163
} else {
164
tracing::info!(url = api_client.get_base_url().to_string(), "Observation posted successfully");
165
}
0 commit comments