From 2347725b18e11d6d1e1d07122d9a1ad08ba4ada4 Mon Sep 17 00:00:00 2001 From: sundowndev Date: Wed, 23 Jun 2021 10:48:32 +0200 Subject: [PATCH] refactor: scan duration message --- pkg/cmd/scan.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/scan.go b/pkg/cmd/scan.go index 826f4768..14fdc9af 100644 --- a/pkg/cmd/scan.go +++ b/pkg/cmd/scan.go @@ -231,7 +231,7 @@ func scanRun(opts *pkg.ScanOptions) error { return err } - globaloutput.Printf(color.WhiteString("Done in %s\n", analysis.Duration.Round(time.Second))) + globaloutput.Printf(color.WhiteString("Scan duration: %s\n", analysis.Duration.Round(time.Second))) if !opts.DisableTelemetry { telemetry.SendTelemetry(analysis)