Package org.gradle.api.logging
Interface LoggingOutput
- All Known Subinterfaces:
LoggingManager
public interface LoggingOutput
Provides access to the output of the Gradle logging system.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Adds a listener which receives output written to standard error by the Gradle logging system.void
Adds a listener which receives output written to standard output by the Gradle logging system.void
Removes a listener from standard error.void
Removes a listener from standard output.
-
Method Details
-
addStandardOutputListener
Adds a listener which receives output written to standard output by the Gradle logging system.- Parameters:
listener
- The listener to add.
-
removeStandardOutputListener
Removes a listener from standard output.- Parameters:
listener
- The listener to remove.
-
addStandardErrorListener
Adds a listener which receives output written to standard error by the Gradle logging system.- Parameters:
listener
- The listener to add.
-
removeStandardErrorListener
Removes a listener from standard error.- Parameters:
listener
- The listener to remove.
-