<https://kotlinlang.org/docs/kapt.html#measuring-t...
# kapt
c
https://kotlinlang.org/docs/kapt.html#measuring-the-number-of-files-generated-with-annotation-processors is this even needed? I seem to be able to get processor stats by setting verbose to true
Copy code
kapt {
    showProcessorStats = true
}
t
yes, in verbose mode stats are printed by default. If verbose is disabled, but
showProcessorsStats
is enabled - then processor stats will be printed in
warn
log level.