From 4c31c0113901fd3cbad8ab5c66efbc221d49d378 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Sun, 23 Aug 2015 11:29:49 -0700 Subject: [PATCH] Cloud storage: better error message for dirty state Tell us WHAT is wrong with the state. Signed-off-by: Dirk Hohndel --- git-access.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-access.c b/git-access.c index 3602b80f0..08000ed88 100644 --- a/git-access.c +++ b/git-access.c @@ -69,7 +69,7 @@ static int check_clean(const char *path, unsigned int status, void *payload) status &= ~GIT_STATUS_CURRENT | GIT_STATUS_IGNORED; if (!status) return 0; - report_error("WARNING: Git cache directory modified (path %s)", path); + report_error("WARNING: Git cache directory modified (path %s) status %0x", path, status); return 1; }