Skip to content
Snippets Groups Projects
Commit bd69d9b5 authored by 🥺's avatar 🥺 :transgender_flag: Committed by 🥺
Browse files

move invalid 200 response log to info

parent 6800f919
No related branches found
No related tags found
No related merge requests found
...@@ -279,7 +279,7 @@ pub(crate) async fn send_request<T>(destination: &ServerName, request: T) -> Res ...@@ -279,7 +279,7 @@ pub(crate) async fn send_request<T>(destination: &ServerName, request: T) -> Res
} }
response.map_err(|e| { response.map_err(|e| {
warn!("Invalid 200 response from {} on: {} {}", &destination, url, e); info!("Invalid 200 response from {} on: {} {}", &destination, url, e);
Error::BadServerResponse("Server returned bad 200 response.") Error::BadServerResponse("Server returned bad 200 response.")
}) })
} else { } else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment