rocks.coffeenet.autoconfigure.logging.CoffeeNetLoggingProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of autoconfigure Show documentation
Show all versions of autoconfigure Show documentation
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 + '}';
}
}