io.quarkiverse.loggingmanager.LoggingManagerRuntimeConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-logging-manager Show documentation
Show all versions of quarkus-logging-manager Show documentation
Provides endpoints to visualize and control the log level of your loggers.
The newest version!
package io.quarkiverse.loggingmanager;
import io.quarkus.runtime.annotations.ConfigPhase;
import io.quarkus.runtime.annotations.ConfigRoot;
import io.smallrye.config.ConfigMapping;
import io.smallrye.config.WithDefault;
@ConfigMapping(prefix = "quarkus.logging-manager")
@ConfigRoot(phase = ConfigPhase.RUN_TIME)
public interface LoggingManagerRuntimeConfig {
/**
* If Logging Manager should be enabled. By default, Logging Manager is enabled if it is included (see
* {@code always-include}).
*/
@WithDefault("true")
boolean enable();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy