Is there any way to configure a task to be quiet? ...
# community-support
b
Is there any way to configure a task to be quiet? I'm using a task from https://github.com/OpenAPITools/openapi-generator and it always print useless output. I don't want to run all my build in quiet mode, just this task.
a
try something like this:
Copy code
tasks.withType<...>().configureEach {
    logging.captureStandardOutput(LogLevel.WARN)
}