Fix logging call

This commit is contained in:
gkfirst8 2015-04-22 10:54:43 +02:00
parent aef61411e9
commit 0b782e9910

View file

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