diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-04-04 10:57:44 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-04-04 14:19:13 -0700 |
commit | 9283332b95d3e41f43f3300667ac7523f58ab14b (patch) | |
tree | b390b9fb893deff40e8b415975c28ea6e1572a4c /subsurface-core | |
parent | f7564c2b776f93cb1c2af2da26a44ef2eaaec837 (diff) | |
download | subsurface-9283332b95d3e41f43f3300667ac7523f58ab14b.tar.gz |
Use the same format for output to stderr and AppLog
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'subsurface-core')
-rw-r--r-- | subsurface-core/git-access.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/subsurface-core/git-access.c b/subsurface-core/git-access.c index 5bc720cd4..d10139d3d 100644 --- a/subsurface-core/git-access.c +++ b/subsurface-core/git-access.c @@ -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; } |