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

rocks.coffeenet.autoconfigure.logging.CoffeeNetLoggingProperties Maven / Gradle / Ivy

Go to download

Autoconfigure will be used in the starter dependencies to configure different integrations into the coffeenet

The newest version!
package rocks.coffeenet.autoconfigure.logging;

import org.springframework.boot.context.properties.ConfigurationProperties;


/**
 * Logging properties to configure the behaviour of the logging.
 *
 * @author  Tobias Schneider - [email protected]
 * @since  0.12.0
 */
@ConfigurationProperties("coffeenet.logging")
public class CoffeeNetLoggingProperties {

    private Boolean enabled = true;

    public Boolean isEnabled() {

        return enabled;
    }


    public void setEnabled(Boolean enabled) {

        this.enabled = enabled;
    }


    @Override
    public String toString() {

        return "CoffeeNetLoggingProperties{"
            + "enabled=" + enabled + '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy