diff --git a/cmd/util.go b/cmd/util.go index 58f082e..94d519d 100644 --- a/cmd/util.go +++ b/cmd/util.go @@ -76,7 +76,11 @@ func getCacheList() cache.GlobalCacheList { refreshStart := time.Now() cacheList.RefreshInParallel(false) refreshElapsed := time.Since(refreshStart) - fmt.Printf("Cache refresh total time: %s\n\n", refreshElapsed) + + if config.GlobalConfig.Verbose { + fmt.Printf("Cache operations total time: %s\n\n", refreshElapsed) + } + return cacheList }