prune.c: only print informational message in show_only or verbose mode
commit90b29cb7a8213a947e08c41ea4680ced7ac7c67c
authorBrandon Casey <drafnel@gmail.com>
Tue, 7 Aug 2012 05:01:49 +0000 (6 22:01 -0700)
committerJunio C Hamano <gitster@pobox.com>
Tue, 7 Aug 2012 22:01:37 +0000 (7 15:01 -0700)
treee5ca471ce0bdc904253ac38da61b26d730565405
parente15c16de396a1e1f42001b03cb885ce64eb4098e
prune.c: only print informational message in show_only or verbose mode

"git prune" reports removal of loose object files that are no longer
necessary only under the "-v" option, but unconditionally reports
removal of temporary files that are no longer needed.

The original thinking was that the presence of a leftover temporary
file should be an unusual occurrence that may indicate an earlier
failure of some sort, and the user may want to be reminded of it.
Removing an unnecessary loose object file, on the other hand, is
just part of the normal operation.  That is why the former is always
printed out and the latter only when -v is used.

But neither report is particularly useful.  Hide both of these
behind the "-v" option for consistency.

Signed-off-by: Brandon Casey <drafnel@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/prune.c