From e25e9f7a41b1bfb6a7316d78dda2b2d86f51f345 Mon Sep 17 00:00:00 2001 From: Coby Allred Date: Wed, 1 May 2024 09:50:38 -0700 Subject: [PATCH] Lower experiments log severity (#1094) --- .../Experiments/ExperimentService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.ComponentDetection.Orchestrator/Experiments/ExperimentService.cs b/src/Microsoft.ComponentDetection.Orchestrator/Experiments/ExperimentService.cs index d49ab31b3..f372255e9 100644 --- a/src/Microsoft.ComponentDetection.Orchestrator/Experiments/ExperimentService.cs +++ b/src/Microsoft.ComponentDetection.Orchestrator/Experiments/ExperimentService.cs @@ -185,7 +185,7 @@ public async Task FinishAsync() // process empty diffs as this means the experiment was successful. if (!experimentComponents.Any() && !controlComponents.Any()) { - this.logger.LogWarning("Experiment {Experiment} has no components in either group, skipping processing", config.Name); + this.logger.LogInformation("Experiment {Experiment} has no components in either group, skipping processing", config.Name); continue; }