I'm leaning towards ``` /** * Lazy add a l...
# kotlin-logging
m
I'm leaning towards
Copy code
/**
     * Lazy add a log message with throwable payload if isTraceEnabled is true
     */
    inline fun trace(t: Throwable, msg: () -> Any?) {
        if (isTraceEnabled) trace(msg.invoke().toString(), t)
    }