A LoggingConfiguration
defines the logging settings for a Gradle build.
Type | Name and description |
---|---|
ConsoleOutput |
getConsoleOutput() Returns the style of logging output that should be written to the console. |
LogLevel |
getLogLevel() Returns the minimum logging level to use. |
ShowStacktrace |
getShowStacktrace() Returns the detail that should be included in stacktraces. |
boolean |
isColorOutput() Returns true if logging output should be displayed in color when Gradle is running in a console which supports color output. |
void |
setColorOutput(boolean colorOutput) Specifies whether logging output should be displayed in color. |
void |
setConsoleOutput(ConsoleOutput colorOutput) Specifies the style of logging output that should be written to the console. |
void |
setLogLevel(LogLevel logLevel) Specifies the minimum logging level to use. |
void |
setShowStacktrace(ShowStacktrace showStacktrace) Sets the detail that should be included in stacktraces. |
Returns the style of logging output that should be written to the console. Defaults to ConsoleOutput.Auto
Returns the minimum logging level to use. All log messages with a lower log level are ignored. Defaults to LogLevel.LIFECYCLE.
Returns the detail that should be included in stacktraces. Defaults to ShowStacktrace.INTERNAL_EXCEPTIONS.
Returns true if logging output should be displayed in color when Gradle is running in a console which supports color output. The default value is true.
Specifies whether logging output should be displayed in color.
colorOutput
- true if logging output should be displayed in color.Specifies the style of logging output that should be written to the console.
Specifies the minimum logging level to use. All log messages with a lower log level are ignored.
Sets the detail that should be included in stacktraces.