How can I print messages from a meta compiler plug...
# arrow-meta
d
How can I print messages from a meta compiler plugin so that I can see them during compilation? Simple println() didn't work...
r
Call
messageCollector?.report(...)
. It's a property of
CompilerContext
which is the receiver of the plugin block
👍 1
d
Got it. Thank you