Skip to content

Releases: buenaflor/KFlogger

0.1.0

19 Sep 13:19
Compare
Choose a tag to compare

Features

  • logging simple messages without arguments at all log levels -> log.atWarning().log("my message") or log.atFine().log("my message")
  • logging messages with printf format -> log.atWarning("my message: $s", "test") although this is only limited to %s, %d, %i, %f%
  • avoid work at log site with lazy -> log.atWarning("complex work: $s", KLazyArgs.lazy { "result" })