|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | METHOD | DETAIL: FIELD | METHOD |
org.gradle.api.logging.LoggingOutput org.gradle.api.logging.LoggingManager
public interface LoggingManager extends LoggingOutput
A LoggingManager provides access to and control over the Gradle logging system. Using this interface, you can control the current logging level and standard output and error capture.
Method Summary | |
---|---|
LoggingManager
|
captureStandardError(LogLevel level)
Requests that output written to System.err be routed to Gradle's logging system. |
LoggingManager
|
captureStandardOutput(LogLevel level)
Requests that output written to System.out be routed to Gradle's logging system. |
LogLevel
|
getLevel()
Returns the current logging level. |
LogLevel
|
getStandardErrorCaptureLevel()
Returns the log level that output written to System.err will be mapped to. |
LogLevel
|
getStandardOutputCaptureLevel()
Returns the log level that output written to System.out will be mapped to. |
LoggingManager
|
setLevel(LogLevel logLevel)
Sets the minimum logging level. |
Methods inherited from interface LoggingOutput | |
---|---|
addStandardErrorListener, addStandardOutputListener, removeStandardErrorListener, removeStandardOutputListener |
Method Detail |
---|
public LoggingManager captureStandardError(LogLevel level)
level
- The log level to route System.err to.
public LoggingManager captureStandardOutput(LogLevel level)
level
- The log level to route System.out to.
public LogLevel getLevel()
public LogLevel getStandardErrorCaptureLevel()
public LogLevel getStandardOutputCaptureLevel()
public LoggingManager setLevel(LogLevel logLevel)
logLevel
- The minimum logging level.
Gradle API 1.12