Is there an equivalent to `Messager`? I’ve noticed...
# ksp
z
Is there an equivalent to
Messager
? I’ve noticed that simple printlns don’t work for this case, so currently doing
error("here")
-driven-development 😁
t
It's in our backlog 🙂 Will be available later.
z
t
Thank you!
By the way, if debugging without daemon is too slow (it has to start jvm everytime),
./gradlew  -Dkotlin.daemon.jvm.options="-Xdebug,-Xrunjdwp:transport=dt_socket\,address=8765\,server=y\,suspend=n" ...
and attach to the KotlinCompileDaemon process in the debugger might worth trying.
z
ah nice. Want to add that bit to this for others? https://github.com/android/kotlin/issues/3
(I added my above bit to that for anyone else interested)
j
Thanks for bringing that up, Ting-Yuan's command has been what we have been using during development.
👍 1