We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf68e1c commit bc5319aCopy full SHA for bc5319a
engine/packages/api-util/src/lib.rs
@@ -182,9 +182,7 @@ pub async fn reqwest_to_axum_response(reqwest_response: reqwest::Response) -> Re
182
183
if !status.is_success() {
184
let body_text = String::from_utf8_lossy(&body_bytes);
185
- anyhow::bail!(
186
- "remote dc returned error (status: {status}, ray_id: {ray_id:?}, body: {body_text})"
187
- );
+ tracing::error!(?status, ?ray_id, %body_text, "remote dc returned error");
188
}
189
190
let mut response = Response::builder()
0 commit comments