mirror of
https://github.com/InsanusMokrassar/KSLog.git
synced 2026-07-14 14:05:01 +00:00
generate kdocs
This commit is contained in:
@@ -1,5 +1,13 @@
|
||||
package dev.inmo.kslog.common
|
||||
|
||||
/**
|
||||
* JVM platform implementation of the default logger
|
||||
*
|
||||
* Uses `[java.util.logging.Logger]` as the logging backend, mapping KSLog levels
|
||||
* to Java logging levels.
|
||||
*
|
||||
* @see defaultKSLogLogger
|
||||
*/
|
||||
actual var KSLoggerDefaultPlatformLoggerLambda: (level: LogLevel, tag: String, message: Any, throwable: Throwable?) -> Unit = { l, t, m, e ->
|
||||
defaultKSLogLogger.doLog(l, t, m.toString(), e)
|
||||
defaultKSLogLogger.doLog(l, m.toString(), e)
|
||||
}
|
||||
Reference in New Issue
Block a user