mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
Cloud storage: better error message for dirty state
Tell us WHAT is wrong with the state. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
b8575221b1
commit
4c31c01139
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue