From f0f5edac00b362afd6b07a067142f023400e2ec5 Mon Sep 17 00:00:00 2001 From: ghe0 Date: Sat, 25 Jan 2025 17:13:19 +0200 Subject: [PATCH] send vm update error to user --- src/grpc.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/grpc.rs b/src/grpc.rs index 746f9e4..fcad76d 100644 --- a/src/grpc.rs +++ b/src/grpc.rs @@ -163,9 +163,8 @@ impl BrainCli for BrainCliMock { Ok(Response::new(response)) } Err(e) => { - log::error!("Something weird happened. Reached error {e:?}"); Err(Status::unknown( - "Request failed due to unknown error. Please try again or contact the DeTEE devs team.", + "Update VM request failed due to error: {e}", )) } }