/*
* Check if we have a match in one of the sought after operating systems
*/
if(!operatingSystems.isEmpty()) {
OperatingSystem operatingSystem = getOperatingSystem();
Result result = check(operatingSystem, operatingSystems);
if (!result.supported) {
String failureReason = formatFailureReason(operatingSystems,
operatingSystem.getCapabilities().get(OperatingSystem.NAME).toString(),
"operating system",
sElem,
result.excluded.isEmpty(),
OperatingSystem.NAME);
if(logger.isWarnEnabled()) {