mirror of
https://github.com/InsanusMokrassar/KSLog.git
synced 2025-11-15 02:40:08 +00:00
11 lines
359 B
Kotlin
11 lines
359 B
Kotlin
package dev.inmo.kslog.common
|
|
|
|
/**
|
|
* WebAssembly JavaScript platform implementation of the default logger
|
|
*
|
|
* Uses [printlnLogging] which formats and outputs logs using `[println]`.
|
|
*
|
|
* @see printlnLogging
|
|
*/
|
|
actual var KSLoggerDefaultPlatformLoggerLambda: (level: LogLevel, tag: String, message: Any, throwable: Throwable?) -> Unit =
|
|
printlnLogging |