what's the best way for a compiler plugin to repor...
# compiler
z
what's the best way for a compiler plugin to report verbose logging that's not a compiler warning? It seems that anything less than error/warning will be swallowed by the MessageCollector. I suspect they're getting routed through gradle's logging levels, but considering enabling --debug logging in gradle yields literal gigabytes of noisy logs it's less than ideal. it seems that printlns are also swallowed
👀 2
👍 1
o
My workaround is to enable plugin debug logging via the plugin’s Gradle extension options, and then use MessageCollector at the info level (Gradle‘s default), prefixing each message with „DEBUG“. Not ideal but does the job.