Merge pull request #1169 from gkfirst8/KEYCLOAK-1220

log the right value when keycloak.config.file could not be found or read
This commit is contained in:
Stian Thorgersen 2015-04-22 14:08:29 +02:00
commit cf75a97f08

View file

@ -151,7 +151,7 @@ public abstract class AbstractKeycloakAuthenticatorValve extends FormAuthenticat
try {
is = new FileInputStream(path);
} catch (FileNotFoundException e) {
log.severe("NOT FOUND /WEB-INF/keycloak.json");
log.log(Level.SEVERE, "NOT FOUND {0}", path);
throw new RuntimeException(e);
}
}