From 683e060099025f4030ebeab445471a9dbc978e10 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 25 Aug 2016 13:16:46 -0400 Subject: [PATCH] repo: Add prefixes to errors for querying size/deleting I hit these while causing errors in prune. Let's add the specific object we were looking for. Closes: #471 Approved by: jlebon --- src/libostree/ostree-repo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libostree/ostree-repo.c b/src/libostree/ostree-repo.c index a41f29c9..5e9818fd 100644 --- a/src/libostree/ostree-repo.c +++ b/src/libostree/ostree-repo.c @@ -3136,7 +3136,7 @@ ostree_repo_delete_object (OstreeRepo *self, while (G_UNLIKELY (res == -1 && errno == EINTR)); if (G_UNLIKELY (res == -1)) { - glnx_set_error_from_errno (error); + glnx_set_prefix_error_from_errno (error, "Deleting object %s.%s", sha256, ostree_object_type_to_string (objtype)); goto out; } @@ -3444,7 +3444,7 @@ ostree_repo_query_object_storage_size (OstreeRepo *self, while (G_UNLIKELY (res == -1 && errno == EINTR)); if (G_UNLIKELY (res == -1)) { - glnx_set_error_from_errno (error); + glnx_set_prefix_error_from_errno (error, "Querying object %s.%s", sha256, ostree_object_type_to_string (objtype)); goto out; }