Package io.quarkus.runtime.logging
Interface LogRuntimeConfig.ConsoleConfig
- Enclosing interface:
LogRuntimeConfig
public static interface LogRuntimeConfig.ConsoleConfig
-
Method Summary
Modifier and TypeMethodDescriptionasync()Console async logging configintdarken()Specify how much the colors should be darkened.enable()Deprecated, for removal: This API element is subject to removal in a future version.booleanenabled()If console logging should be enabledfilter()The name of the filter to link to the console handler.format()The log format.@WithConverter(LevelConverter.class) Levellevel()The console log level.booleanstderr()If console logging should go toSystem.errinstead ofSystem.out.
-
Method Details
-
enabled
@WithDefault("true") boolean enabled()If console logging should be enabled -
enable
Deprecated, for removal: This API element is subject to removal in a future version.usequarkus.log.console.enabledinsteadIf console logging should be enabled -
stderr
@WithDefault("false") boolean stderr()If console logging should go toSystem.errinstead ofSystem.out. -
format
The log format. Note that this value is ignored if an extension is present that takes control of console formatting (e.g., an XML or JSON-format extension). -
level
@WithDefault("ALL") @WithConverter(LevelConverter.class) @WithConverter(LevelConverter.class) Level level()The console log level. -
darken
@WithDefault("0") int darken()Specify how much the colors should be darkened. Note that this value is ignored if an extension is present that takes control of console formatting (e.g., an XML or JSON-format extension). -
filter
The name of the filter to link to the console handler. -
async
LogRuntimeConfig.AsyncConfig async()Console async logging config
-
quarkus.log.console.enabledinstead