Skip to content

Commit

Permalink
change log level to info
Browse files Browse the repository at this point in the history
  • Loading branch information
klaus-sap committed Dec 14, 2023
1 parent d1a2cac commit cc27f66
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public static void validate(UserConfig config) throws InvalidIdentityZoneConfigu
Set<String> allowedGroups = (config == null) ? null : config.resultingAllowedGroups();
if ((allowedGroups != null) && (allowedGroups.isEmpty())) {
String message = "At least one group must be allowed";
logger.error(message);
logger.info(message);
throw new InvalidIdentityZoneConfigurationException(message);
}
}
Expand Down

0 comments on commit cc27f66

Please sign in to comment.