ai.digital.integration.server.deploy.config.LogbackConfigs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of integration-server-gradle-plugin Show documentation
Show all versions of integration-server-gradle-plugin Show documentation
The easy way to get custom setup for Deploy up and running
package ai.digital.integration.server.deploy.config
class LogbackConfigs {
companion object {
val toLogSql = mutableMapOf(
"com.xebialabs.deployit.core.sql.batch" to "debug",
"org.springframework.jdbc.core.JdbcTemplate" to "trace",
"org.hibernate.sql" to "trace",
"org.hibernate.type" to "all"
)
}
}