Skip to content

Commit ae3c82e

Browse files
Fix logging (#378)
1 parent 48adc90 commit ae3c82e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/scala/za/co/absa/hyperdrive/trigger/configuration/liquibase/LiquibaseConfiguration.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,9 @@ class LiquibaseConfiguration(properties: LiquibaseProperties) extends SpringLiqu
3838

3939
override def afterPropertiesSet(): Unit = {
4040
if (!skipLiquibase) {
41-
logger.info("Skipping Liquibase")
4241
configureLiquibase()
42+
} else {
43+
logger.info("Skipping Liquibase")
4344
}
4445
}
4546

0 commit comments

Comments
 (0)