diff --git a/crates/driver/src/infra/api/error.rs b/crates/driver/src/infra/api/error.rs index 10eb6b0808..0b6529fa88 100644 --- a/crates/driver/src/infra/api/error.rs +++ b/crates/driver/src/infra/api/error.rs @@ -113,6 +113,7 @@ impl From for (axum::http::StatusCode, axum::Json) { if let quote::Error::Solver(ref solver_err) = value && let Some(custom_err) = solver_err.custom_error() { + tracing::warn!(err=?custom_err, "received custom solver error, mapping to internal errors"); let (kind, description) = map_custom_solver_error(custom_err); return ( axum::http::StatusCode::BAD_REQUEST,