diff --git a/compute_tools/src/http/api.rs b/compute_tools/src/http/api.rs index 053d39b5cd..cffdbdbc4f 100644 --- a/compute_tools/src/http/api.rs +++ b/compute_tools/src/http/api.rs @@ -143,7 +143,7 @@ async fn routes(req: Request, compute: &Arc) -> Response Response::new(Body::from("OK")), Err(e) => { - error!("download_file failed: {}", e); + error!("download_extension failed: {}", e); Response::new(Body::from(e.to_string())) } }