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 SummaryModifier 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- 
addStandardOutputListenerAdds a listener which receives output written to standard output by the Gradle logging system.- Parameters:
- listener- The listener to add.
 
- 
removeStandardOutputListenerRemoves a listener from standard output.- Parameters:
- listener- The listener to remove.
 
- 
addStandardErrorListenerAdds a listener which receives output written to standard error by the Gradle logging system.- Parameters:
- listener- The listener to add.
 
- 
removeStandardErrorListenerRemoves a listener from standard error.- Parameters:
- listener- The listener to remove.
 
 
-