Transform standard output from Gradle's Exec task on the fly? -
is possible transform standard output logs gradle exec task produces, on fly?
we have task executing command line tool takes minute run logs a lot. filter out few of lines , log them show progress without cluttering build log.
you set own outputstream
implementation exec.setstandardoutput
. or execute shell command runs tool , filters output.
Comments
Post a Comment