KEYCLOAK-14732 Startup errors should log the stacktrace

This commit is contained in:
jblashka 2020-07-15 02:53:34 -04:00 committed by GitHub
parent 7d77969617
commit 1c7ad83f90
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -36,7 +36,7 @@ public class WildflyPlatform implements PlatformProvider {
@Override
public void exit(Throwable cause) {
ServicesLogger.LOGGER.fatal(cause);
ServicesLogger.LOGGER.fatal("Error during startup", cause);
exit(1);
}