Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions engine/packages/api-util/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -182,9 +182,7 @@ pub async fn reqwest_to_axum_response(reqwest_response: reqwest::Response) -> Re

if !status.is_success() {
let body_text = String::from_utf8_lossy(&body_bytes);
anyhow::bail!(
"remote dc returned error (status: {status}, ray_id: {ray_id:?}, body: {body_text})"
);
tracing::error!(?status, ?ray_id, %body_text, "remote dc returned error");
}

let mut response = Response::builder()
Expand Down
Loading