Skip to content

Commit

Permalink
fix: changing the log level
Browse files Browse the repository at this point in the history
  • Loading branch information
rpapani committed Jul 23, 2024
1 parent 72a85d6 commit bda6ec3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/experimentation-ess/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ export async function postProcessor(auditUrl, auditData, context) {
if (existingExperiments.length === 1) {
[existingExperiment] = existingExperiments;
} else if (existingExperiments.length > 1) {
log.error(`Multiple experiments found for experimentId ${experiment.id}`);
log.info(`Multiple experiments found for experimentId ${experiment.id}`);
existingExperiment = existingExperiments.find((e) => e.url === experiment.url);
}
}
Expand Down

0 comments on commit bda6ec3

Please sign in to comment.