Interface LoggingOutput

All Known Subinterfaces:
LoggingManager

public interface LoggingOutput
Provides access to the output of the Gradle logging system.
Since:
0.9
  • Method Details

    • addStandardOutputListener

      void addStandardOutputListener(StandardOutputListener listener)
      Adds a listener which receives output written to standard output by the Gradle logging system.
      Parameters:
      listener - The listener to add.
      Since:
      0.9
    • removeStandardOutputListener

      void removeStandardOutputListener(StandardOutputListener listener)
      Removes a listener from standard output.
      Parameters:
      listener - The listener to remove.
      Since:
      0.9
    • addStandardErrorListener

      void addStandardErrorListener(StandardOutputListener listener)
      Adds a listener which receives output written to standard error by the Gradle logging system.
      Parameters:
      listener - The listener to add.
      Since:
      0.9
    • removeStandardErrorListener

      void removeStandardErrorListener(StandardOutputListener listener)
      Removes a listener from standard error.
      Parameters:
      listener - The listener to remove.
      Since:
      0.9