I seem to have resolved it partly. turns out stdou...
# compiler
a
I seem to have resolved it partly. turns out stdout is not written anywhere ever.
r
If you run the compiler in process mode from IDEA as a Gradle task it will capture println statements in the std out
Copy code
./gradlew clean :app:build :consumer:execute -Dorg.gradle.debug=true -Dkotlin.compiler.execution.strategy="in-process"
s
You can also add this to the gradle.properties file to have it by default 🙂