https://kotlinlang.org logo
#ksp
Title
# ksp
j

Johann Pardanaud

10/06/2023, 8:26 AM
I'm not sure how the
KSPLogger.logging
method behaves, is it equivalent to the debug level? I've just tried to run a build with
--debug
, I can see all the logs written with
<http://KSPLogger.info|KSPLogger.info>
but not the
KSPLogger.logging
ones.
j

Jiaxiang

10/06/2023, 8:20 PM
KSPLogger.logging
is equivalent to debug level in Gradle and you should be able to see all logs, Gradle debug logging level is the lowest level so you should see every log regardless of its logging level implementation.
j

Johann Pardanaud

10/07/2023, 7:26 AM
Well, maybe there is an issue in my code, I will dig that. Thank you!
2 Views