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 TypeMethodDescriptionvoidAdds a listener which receives output written to standard error by the Gradle logging system.voidAdds a listener which receives output written to standard output by the Gradle logging system.voidRemoves a listener from standard error.voidRemoves 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.
 
 -