Skip to content

Commit 4e75438

Browse files
committed
ci: adds better error message
Signed-off-by: Vincent Biret <[email protected]>
1 parent 1de7355 commit 4e75438

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

performance/resultsComparer/handlers/CompareCommandHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ private static async Task<int> CompareResultsAsync(string existingReportPath, st
6464
{
6565
if (!comparisonPolicy.Equals(existingBenchmarkResult.Value, newBenchmarkResult))
6666
{
67-
logger.LogError("Benchmark result for {ExistingBenchmarkResultKey} does not match the existing benchmark result. {ErrorMessage}", existingBenchmarkResult.Key, comparisonPolicy.GetErrorMessage(existingBenchmarkResult.Value, newBenchmarkResult));
67+
logger.LogError("Benchmark result for {ExistingBenchmarkResultKey} does not match the existing benchmark result (original!=new). {ErrorMessage}", existingBenchmarkResult.Key, comparisonPolicy.GetErrorMessage(existingBenchmarkResult.Value, newBenchmarkResult));
6868
hasErrors = true;
6969
}
7070
}

0 commit comments

Comments
 (0)