Skip to content

0.1.0

Latest
Compare
Choose a tag to compare
@buenaflor buenaflor released this 19 Sep 13:19
· 1 commit to main since this release

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" })