gh-pages / com.nextfaze.devfun.compiler / PROMOTE_NOTE_LOG_MESSAGES
PROMOTE_NOTE_LOG_MESSAGES
const val PROMOTE_NOTE_LOG_MESSAGES: String (source)
Flag to have all note messages output as warning - workaround for various KAPT logging implementations and for debugging purposes.  (default: <false>)
Note: Not needed with Kotlin 1.3.3x when new KAPT options are enabled - use NOTE_LOGGING_ENABLED instead.
Set using APT options:
android {
     defaultConfig {
         javaCompileOptions {
             annotationProcessorOptions {
                 argument("devfun.logging.note.promote", "true")
             }
         }
     }
}
See Also