
io.quarkiverse.loggingmanager.deployment.LoggingManagerUIConfig Maven / Gradle / Ivy
package io.quarkiverse.loggingmanager.deployment;
import io.quarkus.runtime.annotations.ConfigGroup;
import io.quarkus.runtime.annotations.ConfigItem;
@ConfigGroup
public class LoggingManagerUIConfig {
/**
* The path where Logging Manager is available.
* The value `/` is not allowed as it blocks the application from serving anything else.
*/
@ConfigItem(defaultValue = "logging-manager-ui")
String rootPath;
/**
* Always include the UI. By default this will only be included in dev and test.
* Setting this to true will also include the UI in Prod
*/
@ConfigItem(defaultValue = "false")
boolean alwaysInclude;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy