Closed
Description
CommonsLoggingLiquibaseLogger
doesn't honour the configured logging level for liquibase
. For example logging.level.liquibase: DEBUG
has no effect. The culprit appears to be:
if (this.logger != null && getLogLevel().compareTo(level) <= 0)
getLogLevel()
always returns INFO
as setLogLevel
has not been called so it falls back to the level configured on DefaultLoggerConfiguration
which defaults to INFO
.
This was originally raised on Stack Overflow.