So does that mean that I can’t enable the logs of my plugin (via configuration or xml) alone and disable all of the other logs that Gradle might output (processing, other plugins, etc…) during the development and testing of my plugin? If I want to verify that logging is correct in my plugin, my only option is to enable --info
or --debug
(or any level flag on the cmd line) and search for them inside all of the logs (about 100 lines or so) that come out?
I guess our only option is to convert all of my logs to use logger.quiet
via a -DVAR
option of some sort…right?