Class ConsoleConfig

java.lang.Object
io.quarkus.deployment.console.ConsoleConfig

@ConfigRoot public class ConsoleConfig extends Object
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    boolean
    Disable the testing status/prompt message at the bottom of the console and log these messages to STDOUT instead.
    boolean
    Disables the ability to enter input on the console.
    boolean
    If test results and status should be displayed in the console.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • enabled

      @ConfigItem(defaultValue="true") public 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

      @ConfigItem(defaultValue="false") public boolean disableInput
      Disables the ability to enter input on the console.
    • basic

      @ConfigItem(defaultValue="false") public 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.

  • Constructor Details

    • ConsoleConfig

      public ConsoleConfig()