Package io.quarkus.runtime.logging
Class CategoryConfig
- java.lang.Object
-
- io.quarkus.runtime.logging.CategoryConfig
-
public class CategoryConfig extends Object
-
-
Field Summary
Fields Modifier and Type Field Description (package private) Optional<List<String>>handlersThe names of the handlers to link to this category.(package private) InheritableLevellevelThe log level for this category.(package private) booleanuseParentHandlersSpecify whether this logger should send its output to its parent Logger
-
Constructor Summary
Constructors Constructor Description CategoryConfig()
-
-
-
Field Detail
-
level
@ConfigItem(defaultValue="inherit") InheritableLevel level
The log level for this category.Note that to get log levels below
INFO, the minimum level build-time configuration option also needs to be adjusted.
-
handlers
@ConfigItem Optional<List<String>> handlers
The names of the handlers to link to this category.
-
useParentHandlers
@ConfigItem(defaultValue="true") boolean useParentHandlers
Specify whether this logger should send its output to its parent Logger
-
-
Method Detail
-
getLevel
public InheritableLevel getLevel()
-
-