From 5574bac76673bb754cf7d01e722a12b339aab995 Mon Sep 17 00:00:00 2001 From: Steve Streeting Date: Mon, 12 Oct 2015 11:55:41 +0100 Subject: [PATCH] Make verbose output visually a sub detail of summary printed at end --- commands/command_prune.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/command_prune.go b/commands/command_prune.go index 8e5133b5..9a540040 100644 --- a/commands/command_prune.go +++ b/commands/command_prune.go @@ -127,7 +127,7 @@ func prune(verifyRemote, dryRun, verbose bool) { totalSize += pointer.Size if verbose { // Save up verbose output for the end, spinner still going - verboseOutput.WriteString(fmt.Sprintf("Prune %v, %v", pointer.Oid, humanizeBytes(pointer.Size))) + verboseOutput.WriteString(fmt.Sprintf(" * %v (%v)\n", pointer.Oid, humanizeBytes(pointer.Size))) } if verifyRemote && !dryRun { verifyQueue.Add(lfs.NewDownloadCheckable(&lfs.WrappedPointer{Pointer: pointer}))