diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-08-23 18:19:36 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-08-25 10:43:36 -0700 |
commit | eb205c1b090b94f4812358c8835065491d149c6b (patch) | |
tree | 665d9eefa36293a1277dc2ce83c2124e50af6e00 /load-git.c | |
parent | f177b2ec533dea8b61648a856ac8e77bf6407a48 (diff) | |
download | subsurface-eb205c1b090b94f4812358c8835065491d149c6b.tar.gz |
Cloud storage: be more verbose if asked to be verbose
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'load-git.c')
-rw-r--r-- | load-git.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/load-git.c b/load-git.c index c4bbf1616..24fef24de 100644 --- a/load-git.c +++ b/load-git.c @@ -1531,6 +1531,8 @@ static int walk_tree_file(const char *root, const git_tree_entry *entry, git_rep struct dive *dive = active_dive; dive_trip_t *trip = active_trip; const char *name = git_tree_entry_name(entry); + if (verbose) + fprintf(stderr, "git load handling file %s\n", name); switch (*name) { /* Picture file? They are saved as time offsets in the dive */ case '-': case '+': |