What's the beat way to debug a code generator. Is ...
# squarelibraries
r
What's the beat way to debug a code generator. Is there a way to attach a debugger?
m
You can run your build with
-Dorg.gradle.debug=true
and then run a "Remote" configuration in IntelliJ
Alternatively, I think you can click "debug" from the Gradle panel. I've never really used it myself but might work and be easier
👍 1
r
Nice didn't know that. Thanks