Interface LoggingConfiguration

All Known Implementing Classes:
StartParameter

public interface LoggingConfiguration
A LoggingConfiguration defines the logging settings for a Gradle build.
  • Method Details

    • getLogLevel

      LogLevel getLogLevel()
      Returns the minimum logging level to use. All log messages with a lower log level are ignored. Defaults to LogLevel.LIFECYCLE.
    • setLogLevel

      void setLogLevel(LogLevel logLevel)
      Specifies the minimum logging level to use. All log messages with a lower log level are ignored.
    • getConsoleOutput

      ConsoleOutput getConsoleOutput()
      Returns the style of logging output that should be written to the console. Defaults to ConsoleOutput.Auto
    • setConsoleOutput

      void setConsoleOutput(ConsoleOutput consoleOutput)
      Specifies the style of logging output that should be written to the console.
    • getShowStacktrace

      ShowStacktrace getShowStacktrace()
      Returns the detail that should be included in stacktraces. Defaults to ShowStacktrace.INTERNAL_EXCEPTIONS.
    • setShowStacktrace

      void setShowStacktrace(ShowStacktrace showStacktrace)
      Sets the detail that should be included in stacktraces.