From 09c14af6d1335845dad15a8f49b6617cdd373151 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Fri, 9 Mar 2018 17:15:48 +0000 Subject: [PATCH] cmd: Fix go routines at exit message to make it less confusing --- cmd/cmd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/cmd.go b/cmd/cmd.go index f076ecc9f..48b35a8a0 100644 --- a/cmd/cmd.go +++ b/cmd/cmd.go @@ -319,7 +319,7 @@ func Run(Retry bool, showStats bool, cmd *cobra.Command, f func() error) { if showStats && (accounting.Stats.Errored() || *statsInterval > 0) { accounting.Stats.Log() } - fs.Debugf(nil, "Go routines at exit %d\n", runtime.NumGoroutine()) + fs.Debugf(nil, "%d go routines active\n", runtime.NumGoroutine()) if accounting.Stats.Errored() { resolveExitCode(accounting.Stats.GetLastError()) }