diff --git a/Plugins/BenchmarkTool/BenchmarkTool+Operations.swift b/Plugins/BenchmarkTool/BenchmarkTool+Operations.swift index 7c89ed64..fc2bd02b 100644 --- a/Plugins/BenchmarkTool/BenchmarkTool+Operations.swift +++ b/Plugins/BenchmarkTool/BenchmarkTool+Operations.swift @@ -144,8 +144,10 @@ extension BenchmarkTool { var p90Thresholds: [BenchmarkIdentifier : [BenchmarkMetric: BenchmarkThresholds.AbsoluteThreshold]] = [:] - print("") - print("Reading thresholds from \"\(thresholdsPath)\"") + if quiet == false { + print("") + print("Reading thresholds from \"\(thresholdsPath)\"") + } benchmarks.forEach { benchmark in if let thresholds = BenchmarkTool.makeBenchmarkThresholds( @@ -164,9 +166,11 @@ extension BenchmarkTool { exitCode: .thresholdRegression) } - print("") - print("Checking \(benchmarks.map { $0.target + ":" + $0.name })") - print("") + if quiet == false { + print("") + print("Checking \(benchmarks.map { $0.target + ":" + $0.name })") + print("") + } let deviationResults = currentBaseline.failsAbsoluteThresholdChecks(benchmarks: benchmarks, p90Thresholds: p90Thresholds)