Package io.quarkus.runtime.logging
Class CategoryBuildTimeConfig
- java.lang.Object
-
- io.quarkus.runtime.logging.CategoryBuildTimeConfig
-
public class CategoryBuildTimeConfig extends Object
-
-
Field Summary
Fields Modifier and Type Field Description InheritableLevelminLevelThe minimum log level for this category.
-
Constructor Summary
Constructors Constructor Description CategoryBuildTimeConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description InheritableLevelgetMinLevel()
-
-
-
Field Detail
-
minLevel
@ConfigItem(defaultValue="inherit") public InheritableLevel minLevel
The minimum log level for this category. By default, all categories are configured withDEBUGminimum level. To get runtime logging belowDEBUG, e.g.TRACE, the minimum level has to be adjusted at build time, the right log level needs to be provided at runtime. As an example, to getTRACElogging, minimum level needs to be atTRACEand the runtime log level needs to match that.
-
-
Method Detail
-
getMinLevel
public InheritableLevel getMinLevel()
-
-