I'm writing a compiler plugin with Arrow Meta. I m...
# compiler
m
I'm writing a compiler plugin with Arrow Meta. I manage to print some debugging output with
Copy code
messageCollector?.report(CompilerMessageSeverity.WARNING, message, HERE)
but using any lower severity level does not produce any output on the console, even if I pass
-verbose
as compiler argument. Why? How can I use different severity levels or otherwise print messages to the console from my compiler plugin?
s
Gradle suppresses everything lower than warning by default, but you can pass --info or --debug there as a command line param