Recherche…


Remarques

Question connexe: Manière idiomatique de se connecter à Kotlin

kotlin.logging

class FooWithLogging {
  companion object: KLogging()

  fun bar() {
    logger.info { "hello $name" }
  }

  fun logException(e: Exception) {
    logger.error(e) { "Error occured" }
  }
}

Utiliser le framework kotlin.logging



Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow