From 765945c9b72a90c978da7afaa7ed32172f3efe94 Mon Sep 17 00:00:00 2001 From: Max Wash Date: Mon, 24 Feb 2025 15:55:46 +0000 Subject: [PATCH] add error code logging to unwrap command --- src/unwrap.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/unwrap.c b/src/unwrap.c index 797d0cc..56185c5 100644 --- a/src/unwrap.c +++ b/src/unwrap.c @@ -101,6 +101,7 @@ static int unwrap( if (status != EC3_SUCCESS) { b_err("I/O failure while reading from container", in_path); + b_i("error code: %s", ec3_status_to_string(status)); ret = -1; break; }