All Downloads are FREE. Search and download functionalities are using the official Maven repository.

liquibase.logging.core.DefaultLoggerConfiguration Maven / Gradle / Ivy

There is a newer version: 4.30.0
Show newest version
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();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy