liquibase.logging.core.DefaultLoggerConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liquibase-core Show documentation
Show all versions of liquibase-core Show documentation
Liquibase is a tool for managing and executing database changes.
package liquibase.logging.core;
import liquibase.configuration.ConfigurationDefinition;
import liquibase.configuration.AutoloadedConfigurations;
/**
* Configuration container for {@link liquibase.logging.LogService} properties
* @deprecated not in use anywhere in Liquibase code and has been superseded by log-level and its associated command
* line parameters
*/
@Deprecated
public class DefaultLoggerConfiguration implements AutoloadedConfigurations {
@Deprecated
public static ConfigurationDefinition LOG_LEVEL;
static {
ConfigurationDefinition.Builder builder = new ConfigurationDefinition.Builder("liquibase.defaultlogger");
LOG_LEVEL = builder.define("level", String.class)
.setDescription("Logging level")
.setDefaultValue("INFO")
.setInternal(true)
.build();
}
}