https://kotlinlang.org logo
d

dephinera

06/10/2020, 7:57 PM
How can I print messages from a meta compiler plugin so that I can see them during compilation? Simple println() didn't work...
r

russhwolf

06/10/2020, 9:23 PM
Call
messageCollector?.report(...)
. It's a property of
CompilerContext
which is the receiver of the plugin block
👍 1
d

dephinera

06/11/2020, 6:04 AM
Got it. Thank you
8 Views