This commit is contained in:
Alek Westover
2023-06-23 08:04:37 -04:00
parent 384e3ab1a8
commit fd3dfe9d52

View File

@@ -143,7 +143,7 @@ async fn routes(req: Request<Body>, compute: &Arc<ComputeNode>) -> Response<Body
{
Ok(_) => Response::new(Body::from("OK")),
Err(e) => {
error!("download_file failed: {}", e);
error!("download_extension failed: {}", e);
Response::new(Body::from(e.to_string()))
}
}