KEYCLOAK-11693 Clean startup log output in Keycloak.X

This commit is contained in:
mposolda 2020-10-23 10:58:24 +02:00 committed by Pedro Igor
parent e0ea961599
commit 4f93dc8376
5 changed files with 9 additions and 5 deletions

View file

@ -5,3 +5,8 @@ db=h2-file
%dev.http.enabled=true
%dev.db.username = sa
%dev.db.password = keycloak
# Logging configuration. INFO is the default level for most of the categories
#quarkus.log.level = DEBUG
quarkus.log.category."org.jboss.resteasy.resteasy_jaxrs.i18n".level=WARN
quarkus.log.category."org.infinispan.transaction.lookup.JBossStandaloneJTAManagerLookup".level=WARN

View file

@ -243,7 +243,7 @@ public class DefaultJpaConnectionProviderFactory implements JpaConnectionProvide
operationalInfo.put("databaseProduct", md.getDatabaseProductName() + " " + md.getDatabaseProductVersion());
operationalInfo.put("databaseDriver", md.getDriverName() + " " + md.getDriverVersion());
logger.debugf("Database info: %s", operationalInfo.toString());
logger.infof("Database info: %s", operationalInfo.toString());
} catch (SQLException e) {
logger.warn("Unable to prepare operational info due database exception: " + e.getMessage());
}

View file

@ -143,7 +143,7 @@ public final class PropertyMappers {
return "org.mariadb.jdbc.MySQLDataSource";
case "mysql":
return "com.mysql.cj.jdbc.MysqlXADataSource";
case "postgress":
case "postgres":
case "postgres-95":
case "postgres-10":
return "org.postgresql.xa.PGXADataSource";

View file

@ -169,7 +169,7 @@ public class QuarkusJpaConnectionProviderFactory implements JpaConnectionProvide
operationalInfo.put("databaseProduct", md.getDatabaseProductName() + " " + md.getDatabaseProductVersion());
operationalInfo.put("databaseDriver", md.getDriverName() + " " + md.getDriverVersion());
logger.debugf("Database info: %s", operationalInfo.toString());
logger.infof("Database info: %s", operationalInfo.toString());
} catch (SQLException e) {
logger.warn("Unable to prepare operational info due database exception: " + e.getMessage());
}

View file

@ -8,4 +8,3 @@ quarkus.package.main-class=keycloak
quarkus.http.root-path=/auth
quarkus.application.name=Keycloak
quarkus.banner.enabled=false