generate kdocs

This commit is contained in:
2025-11-12 13:45:57 +06:00
parent 3c4e59ddc2
commit 7f92a3e614
16 changed files with 510 additions and 40 deletions

View File

@@ -1,4 +1,12 @@
package dev.inmo.kslog.common
/**
* Native platform implementation of the default logger
*
* Uses [printlnLogging] which formats and outputs logs using `[println]`.
* Logs are written to standard output.
*
* @see printlnLogging
*/
actual var KSLoggerDefaultPlatformLoggerLambda: (level: LogLevel, tag: String, message: Any, throwable: Throwable?) -> Unit =
printlnLogging