Skip to content

Releases: bolteu/kalev

v1.0.4

20 Apr 13:17
Compare
Choose a tag to compare

Log consumers removal 🗑️

New version provides ability to remove log consumer with

Kalev.removePoeg(poeg)

or even clear consumers list with

Kalev.removeAllPoegs()

v1.0.3

15 Jan 08:04
1a0c8ae
Compare
Choose a tag to compare

FastLog mode 🏎️

Fast log is a high-performance logging feature. Note that logs which was passed to fastlog will NOT be delivered to log consumers (Kalevipoeg implementation)

How to use

//setup
Kalev.fastLog = AndroidFastLog() //or use any implementation of FastLog interface
//usage
Kalev.fastLog?.v("Activity created")

Check README and samples for additional information

v1.0.2

13 Aug 10:38
Compare
Choose a tag to compare

NOP mode 🎃

Implemented NOP (No Operation) mode for better performance.
Within NOP mode Kalev will not create log entries and dispatch them to consumers

How to enable

Kalev.nop = true

to enable NOP mode.