Do not log error on invalid document

Relates to issue #75
This commit is contained in:
Raphael 2021-02-03 10:41:36 +01:00 committed by GitHub
parent 7ff5287a23
commit 6379da2e8f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -53,7 +53,7 @@ public class ScenarioSelectionAction implements CheckAction {
report.setScenario(scenarioTypeResult.getObject().getConfiguration());
log.info("Scenario {} identified for {}", scenarioTypeResult.getObject().getName(), results.getInput().getName());
} else {
log.error("No valid scenario configuration found for {}", results.getInput().getName());
log.info("No valid scenario configuration found for {}", results.getInput().getName());
}
}