timberkt
timberkt copied to clipboard
Easy Android logging with Kotlin and Timber
Results
2
timberkt issues
Sort by
recently updated
recently updated
newest added
Lazy evaluation of the message is one of the selling points of TimberKt, BUT... Currently TimberKt doesn't care if a tag is loggable or not. It evaluates the message string...
For example replace: ``` @JvmStatic inline fun i(t: Throwable? = null, message: () -> String) = log { Timber.i(t, message()) } ``` with ``` @JvmOverloads @JvmStatic inline fun i(t: Throwable?...