Use the same format for output to stderr and AppLog

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2016-04-04 10:57:44 -07:00
parent f7564c2b77
commit 9283332b95
2 changed files with 6 additions and 4 deletions

View file

@ -63,8 +63,6 @@ int git_storage_update_progress(int percent, const char *text)
int ret = 0;
if (update_progress_cb)
ret = (*update_progress_cb)(percent, text);
if (verbose)
fprintf(stderr, "git storage progress %d%% (%s)\n", percent, text);
return ret;
}