Is there any way to get fine control of the logging in a Gradle project?
I'd like to run with --debug so I can investigate an issue, but this enables the org.apache.hc.client5.http.wire logger along with everything else. A routine update has been running for 30 minutes now while it echos everything it downloads (with a verbose UTF-16 hex encoding) to stdout.
I have no way to tell whether it's stuck in a loop or just spending all its time logging.
Is there any way to get fine control of the logging in a Gradle project?
I'd like to run with
--debugso I can investigate an issue, but this enables theorg.apache.hc.client5.http.wirelogger along with everything else. A routine update has been running for 30 minutes now while it echos everything it downloads (with a verbose UTF-16 hex encoding) to stdout.I have no way to tell whether it's stuck in a loop or just spending all its time logging.