Package io.quarkus.deployment.console
Interface ConsoleConfig
@ConfigMapping(prefix="quarkus.console")
@ConfigRoot(phase=BUILD_TIME)
public interface ConsoleConfig
Console
-
Method Summary
Modifier and TypeMethodDescriptionbooleanbasic()Disable the testing status/prompt message at the bottom of the console and log these messages to STDOUT instead.color()If color should be enabled or disabled.booleanDisables the ability to enter input on the console.booleanenabled()If test results and status should be displayed in the console.
-
Method Details
-
enabled
@WithDefault("true") boolean enabled()If test results and status should be displayed in the console.If this is false results can still be viewed in the dev console.
-
disableInput
@WithDefault("false") boolean disableInput()Disables the ability to enter input on the console. -
basic
@WithDefault("false") boolean basic()Disable the testing status/prompt message at the bottom of the console and log these messages to STDOUT instead.Use this option if your terminal does not support ANSI escape sequences.
-
color
If color should be enabled or disabled.If this is not present then an attempt will be made to guess if the terminal supports color
-