diff --git a/index.html b/index.html index 866f39a..fba3e14 100644 --- a/index.html +++ b/index.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -71,6 +71,42 @@ if(savedDarkMode === true){
+ +
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
common
+
+
+
+
+
+
+ +
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
common
+
+
+
+
+
+
-0.3.2
+0.4.0
@@ -45,21 +45,21 @@ if(savedDarkMode === true){
-
+

CallbackKSLog

-
fun CallbackKSLog(performLogCallback: (level: LogLevel, tag: String?, message: String, throwable: Throwable?) -> Unit)
+
fun CallbackKSLog(performLogCallback: SimpleKSLogCallback)

Sources

-
+
- - + +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/-callback-k-s-log/index.html b/kslog/dev.inmo.kslog.common/-callback-k-s-log/index.html index 0addf59..8b35d5a 100644 --- a/kslog/dev.inmo.kslog.common/-callback-k-s-log/index.html +++ b/kslog/dev.inmo.kslog.common/-callback-k-s-log/index.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -51,72 +51,72 @@ if(savedDarkMode === true){

CallbackKSLog

-
class CallbackKSLog(performLogCallback: (level: LogLevel, tag: String?, message: String, throwable: Throwable?) -> Unit) : KSLog
+
class CallbackKSLog(performLogCallback: SimpleKSLogCallback) : KSLog

Constructors

-
+
- +
Link copied to clipboard
-
fun CallbackKSLog(performLogCallback: (level: LogLevel, tag: String?, message: String, throwable: Throwable?) -> Unit)
+
fun CallbackKSLog(performLogCallback: SimpleKSLogCallback)

Functions

-
+
- +
Link copied to clipboard
-
open fun performLog(    level: LogLevel,     message: String,     throwable: Throwable?)
open override fun performLog(    level: LogLevel,     tag: String?,     message: String,     throwable: Throwable?)
open fun performLog(    level: LogLevel,     tag: String?,     throwable: Throwable?,     messageBuilder: () -> String)
+
open fun performLog(    level: LogLevel,     message: Any,     throwable: Throwable?)
open override fun performLog(    level: LogLevel,     tag: String?,     message: Any,     throwable: Throwable?)
open fun performLog(    level: LogLevel,     tag: String?,     throwable: Throwable?,     messageBuilder: () -> Any)
- +
- +
Link copied to clipboard
-
open suspend fun performLogS(    level: LogLevel,     tag: String?,     throwable: Throwable?,     messageBuilder: suspend () -> String)
+
open suspend fun performLogS(    level: LogLevel,     tag: String?,     throwable: Throwable?,     messageBuilder: suspend () -> Any)

Sources

-
+
- +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/-callback-k-s-log/perform-log.html b/kslog/dev.inmo.kslog.common/-callback-k-s-log/perform-log.html index 5e65c44..dd9f413 100644 --- a/kslog/dev.inmo.kslog.common/-callback-k-s-log/perform-log.html +++ b/kslog/dev.inmo.kslog.common/-callback-k-s-log/perform-log.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,21 +45,21 @@ if(savedDarkMode === true){
-
+

performLog

-
open override fun performLog(    level: LogLevel,     tag: String?,     message: String,     throwable: Throwable?)
+
open override fun performLog(    level: LogLevel,     tag: String?,     message: Any,     throwable: Throwable?)

Sources

-
+
- - + +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/-default-k-s-log/-default-k-s-log.html b/kslog/dev.inmo.kslog.common/-default-k-s-log/-default-k-s-log.html index 83300b1..072dbf0 100644 --- a/kslog/dev.inmo.kslog.common/-default-k-s-log/-default-k-s-log.html +++ b/kslog/dev.inmo.kslog.common/-default-k-s-log/-default-k-s-log.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,21 +45,21 @@ if(savedDarkMode === true){
-
+

DefaultKSLog

-
fun DefaultKSLog(    defaultTag: String,     filter: MessageFilter = { _, _, _ -> true },     messageFormatter: MessageFormatter = defaultMessageFormatter,     logging: (level: LogLevel, tag: String, message: String, throwable: Throwable?) -> Unit = defaultLogging)
+
fun DefaultKSLog(    defaultTag: String,     messageFormatter: MessageFormatter = defaultMessageFormatter,     logging: (level: LogLevel, tag: String, message: Any, throwable: Throwable?) -> Unit = defaultLogging)

Sources

-
+
- - + +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/-default-k-s-log/index.html b/kslog/dev.inmo.kslog.common/-default-k-s-log/index.html index a66d770..752347f 100644 --- a/kslog/dev.inmo.kslog.common/-default-k-s-log/index.html +++ b/kslog/dev.inmo.kslog.common/-default-k-s-log/index.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -51,91 +51,72 @@ if(savedDarkMode === true){

DefaultKSLog

-
class DefaultKSLog(    defaultTag: String,     val filter: MessageFilter = { _, _, _ -> true },     messageFormatter: MessageFormatter = defaultMessageFormatter,     logging: (level: LogLevel, tag: String, message: String, throwable: Throwable?) -> Unit = defaultLogging) : KSLog
+
class DefaultKSLog(    defaultTag: String,     messageFormatter: MessageFormatter = defaultMessageFormatter,     logging: (level: LogLevel, tag: String, message: Any, throwable: Throwable?) -> Unit = defaultLogging) : KSLog
-
+

Constructors

-
+
- +
Link copied to clipboard
-
fun DefaultKSLog(    defaultTag: String,     filter: MessageFilter = { _, _, _ -> true },     messageFormatter: MessageFormatter = defaultMessageFormatter,     logging: (level: LogLevel, tag: String, message: String, throwable: Throwable?) -> Unit = defaultLogging)
+
fun DefaultKSLog(    defaultTag: String,     messageFormatter: MessageFormatter = defaultMessageFormatter,     logging: (level: LogLevel, tag: String, message: Any, throwable: Throwable?) -> Unit = defaultLogging)

Functions

-
+
- +
Link copied to clipboard
-
open fun performLog(    level: LogLevel,     message: String,     throwable: Throwable?)
open override fun performLog(    level: LogLevel,     tag: String?,     message: String,     throwable: Throwable?)
open override fun performLog(    level: LogLevel,     tag: String?,     throwable: Throwable?,     messageBuilder: () -> String)
+
open fun performLog(    level: LogLevel,     message: Any,     throwable: Throwable?)
open override fun performLog(    level: LogLevel,     tag: String?,     message: Any,     throwable: Throwable?)
open override fun performLog(    level: LogLevel,     tag: String?,     throwable: Throwable?,     messageBuilder: () -> Any)
- +
- +
Link copied to clipboard
-
open suspend override fun performLogS(    level: LogLevel,     tag: String?,     throwable: Throwable?,     messageBuilder: suspend () -> String)
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
-
-
val filter: MessageFilter
+
open suspend override fun performLogS(    level: LogLevel,     tag: String?,     throwable: Throwable?,     messageBuilder: suspend () -> Any)

Sources

-
+
- +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/-default-k-s-log/perform-log-s.html b/kslog/dev.inmo.kslog.common/-default-k-s-log/perform-log-s.html index 8c21727..a91137e 100644 --- a/kslog/dev.inmo.kslog.common/-default-k-s-log/perform-log-s.html +++ b/kslog/dev.inmo.kslog.common/-default-k-s-log/perform-log-s.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,21 +45,21 @@ if(savedDarkMode === true){
-
+

performLogS

-
open suspend override fun performLogS(    level: LogLevel,     tag: String?,     throwable: Throwable?,     messageBuilder: suspend () -> String)
+
open suspend override fun performLogS(    level: LogLevel,     tag: String?,     throwable: Throwable?,     messageBuilder: suspend () -> Any)

Sources

-
+
- - + +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/-default-k-s-log/perform-log.html b/kslog/dev.inmo.kslog.common/-default-k-s-log/perform-log.html index 9b5829f..1c1309b 100644 --- a/kslog/dev.inmo.kslog.common/-default-k-s-log/perform-log.html +++ b/kslog/dev.inmo.kslog.common/-default-k-s-log/perform-log.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,32 +45,32 @@ if(savedDarkMode === true){
-
+

performLog

-
open override fun performLog(    level: LogLevel,     tag: String?,     message: String,     throwable: Throwable?)
open override fun performLog(    level: LogLevel,     tag: String?,     throwable: Throwable?,     messageBuilder: () -> String)
+
open override fun performLog(    level: LogLevel,     tag: String?,     message: Any,     throwable: Throwable?)
open override fun performLog(    level: LogLevel,     tag: String?,     throwable: Throwable?,     messageBuilder: () -> Any)

Sources

-
+
- - + +
Link copied to clipboard
- +
- - + +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/-k-s-log.html b/kslog/dev.inmo.kslog.common/-k-s-log.html index 7652180..20013bf 100644 --- a/kslog/dev.inmo.kslog.common/-k-s-log.html +++ b/kslog/dev.inmo.kslog.common/-k-s-log.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -46,98 +46,98 @@ if(savedDarkMode === true){
-
+

KSLog

-
fun KSLog(    defaultTag: String,     filter: MessageFilter = { _, _, _ -> true },     messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog
fun KSLog(    defaultTag: String,     levels: Iterable<LogLevel>,     messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog
fun KSLog(    defaultTag: String,     firstLevel: LogLevel,     secondLevel: LogLevel,     vararg otherLevels: LogLevel,     messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog
fun KSLog(    defaultTag: String,     minLoggingLevel: LogLevel,     messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog
fun KSLog(    defaultTag: String,     logger: Logger,     filter: MessageFilter = { _, _, _ -> true },     messageFormatter: MessageFormatter = defaultMessageFormatter): CallbackKSLog
fun KSLog(    defaultTag: String,     logger: Logger,     levels: Iterable<LogLevel>,     messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog
fun KSLog(    defaultTag: String,     logger: Logger,     firstLevel: LogLevel,     secondLevel: LogLevel,     vararg otherLevels: LogLevel,     messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog
fun KSLog(    defaultTag: String,     logger: Logger,     minLoggingLevel: LogLevel = LogLevel.values().first(),     messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog
+
fun KSLog(defaultTag: String, messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog
fun KSLog(    defaultTag: String,     levels: Iterable<LogLevel>,     messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog
fun KSLog(    defaultTag: String,     firstLevel: LogLevel,     secondLevel: LogLevel,     vararg otherLevels: LogLevel,     messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog
fun KSLog(    defaultTag: String,     minLoggingLevel: LogLevel,     messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog
fun KSLog(    defaultTag: String,     logger: Logger,     messageFormatter: MessageFormatter = defaultMessageFormatter): CallbackKSLog
fun KSLog(    defaultTag: String,     logger: Logger,     levels: Iterable<LogLevel>,     messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog
fun KSLog(    defaultTag: String,     logger: Logger,     firstLevel: LogLevel,     secondLevel: LogLevel,     vararg otherLevels: LogLevel,     messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog
fun KSLog(    defaultTag: String,     logger: Logger,     minLoggingLevel: LogLevel = LogLevel.values().first(),     messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog

Sources

-
+
- - + +
Link copied to clipboard
- +
- - + +
Link copied to clipboard
- +
- - + +
Link copied to clipboard
- +
- - + +
Link copied to clipboard
- +
- - + +
Link copied to clipboard
- +
- - + +
Link copied to clipboard
- +
- - + +
Link copied to clipboard
- +
- - + +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/-k-s-log/-companion/default.html b/kslog/dev.inmo.kslog.common/-k-s-log/-companion/default.html index 0ebd032..bcde25f 100644 --- a/kslog/dev.inmo.kslog.common/-k-s-log/-companion/default.html +++ b/kslog/dev.inmo.kslog.common/-k-s-log/-companion/default.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -54,11 +54,11 @@ if(savedDarkMode === true){
var default: KSLog

Sources

-
+
- +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/-k-s-log/-companion/index.html b/kslog/dev.inmo.kslog.common/-k-s-log/-companion/index.html index b795d4b..bca0952 100644 --- a/kslog/dev.inmo.kslog.common/-k-s-log/-companion/index.html +++ b/kslog/dev.inmo.kslog.common/-k-s-log/-companion/index.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -57,36 +57,36 @@ if(savedDarkMode === true){

Functions

-
+
- +
Link copied to clipboard
-
open override fun performLog(    level: LogLevel,     message: String,     throwable: Throwable?)
open override fun performLog(    level: LogLevel,     tag: String?,     message: String,     throwable: Throwable?)
open override fun performLog(    level: LogLevel,     tag: String?,     throwable: Throwable?,     messageBuilder: () -> String)
+
open override fun performLog(    level: LogLevel,     message: Any,     throwable: Throwable?)
open override fun performLog(    level: LogLevel,     tag: String?,     message: Any,     throwable: Throwable?)
open override fun performLog(    level: LogLevel,     tag: String?,     throwable: Throwable?,     messageBuilder: () -> Any)
- +
- +
Link copied to clipboard
-
open suspend override fun performLogS(    level: LogLevel,     tag: String?,     throwable: Throwable?,     messageBuilder: suspend () -> String)
+
open suspend override fun performLogS(    level: LogLevel,     tag: String?,     throwable: Throwable?,     messageBuilder: suspend () -> Any)
@@ -112,11 +112,11 @@ if(savedDarkMode === true){

Sources

-
+
- +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/-k-s-log/-companion/perform-log-s.html b/kslog/dev.inmo.kslog.common/-k-s-log/-companion/perform-log-s.html index 346dfc6..61a193b 100644 --- a/kslog/dev.inmo.kslog.common/-k-s-log/-companion/perform-log-s.html +++ b/kslog/dev.inmo.kslog.common/-k-s-log/-companion/perform-log-s.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,21 +45,21 @@ if(savedDarkMode === true){
-
+

performLogS

-
open suspend override fun performLogS(    level: LogLevel,     tag: String?,     throwable: Throwable?,     messageBuilder: suspend () -> String)
+
open suspend override fun performLogS(    level: LogLevel,     tag: String?,     throwable: Throwable?,     messageBuilder: suspend () -> Any)

Sources

-
+
- - + +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/-k-s-log/-companion/perform-log.html b/kslog/dev.inmo.kslog.common/-k-s-log/-companion/perform-log.html index 38bf293..6d89c0b 100644 --- a/kslog/dev.inmo.kslog.common/-k-s-log/-companion/perform-log.html +++ b/kslog/dev.inmo.kslog.common/-k-s-log/-companion/perform-log.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,43 +45,43 @@ if(savedDarkMode === true){
-
+

performLog

-
open override fun performLog(    level: LogLevel,     tag: String?,     message: String,     throwable: Throwable?)
open override fun performLog(    level: LogLevel,     message: String,     throwable: Throwable?)
open override fun performLog(    level: LogLevel,     tag: String?,     throwable: Throwable?,     messageBuilder: () -> String)
+
open override fun performLog(    level: LogLevel,     tag: String?,     message: Any,     throwable: Throwable?)
open override fun performLog(    level: LogLevel,     message: Any,     throwable: Throwable?)
open override fun performLog(    level: LogLevel,     tag: String?,     throwable: Throwable?,     messageBuilder: () -> Any)

Sources

-
+
- - + +
Link copied to clipboard
- +
- - + +
Link copied to clipboard
- +
- - + +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/-k-s-log/index.html b/kslog/dev.inmo.kslog.common/-k-s-log/index.html index 0ae68d5..136471d 100644 --- a/kslog/dev.inmo.kslog.common/-k-s-log/index.html +++ b/kslog/dev.inmo.kslog.common/-k-s-log/index.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -76,36 +76,36 @@ if(savedDarkMode === true){

Functions

-
+
- +
Link copied to clipboard
-
open fun performLog(    level: LogLevel,     message: String,     throwable: Throwable?)
abstract fun performLog(    level: LogLevel,     tag: String?,     message: String,     throwable: Throwable?)
open fun performLog(    level: LogLevel,     tag: String?,     throwable: Throwable?,     messageBuilder: () -> String)
+
open fun performLog(    level: LogLevel,     message: Any,     throwable: Throwable?)
abstract fun performLog(    level: LogLevel,     tag: String?,     message: Any,     throwable: Throwable?)
open fun performLog(    level: LogLevel,     tag: String?,     throwable: Throwable?,     messageBuilder: () -> Any)
- +
- +
Link copied to clipboard
-
open suspend fun performLogS(    level: LogLevel,     tag: String?,     throwable: Throwable?,     messageBuilder: suspend () -> String)
+
open suspend fun performLogS(    level: LogLevel,     tag: String?,     throwable: Throwable?,     messageBuilder: suspend () -> Any)
@@ -156,508 +156,547 @@ if(savedDarkMode === true){
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Extensions

-
+
- +
Link copied to clipboard
-
inline fun KSLog.assert(e: Throwable? = null, noinline messageBuilder: () -> String)
inline fun KSLog.assert(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
inline fun KSLog.assert(message: String, e: Throwable? = null)
inline fun KSLog.assert(    tag: String,     message: String,     e: Throwable? = null)
+
inline fun KSLog.assert(e: Throwable? = null, noinline messageBuilder: () -> Any)
inline fun KSLog.assert(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
inline fun KSLog.assert(message: Any, e: Throwable? = null)
inline fun KSLog.assert(    tag: String,     message: Any,     e: Throwable? = null)
- +
- +
Link copied to clipboard
-
inline suspend fun KSLog.assertS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.assertS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.assertS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.assertS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)
- +
- +
Link copied to clipboard
-
inline fun KSLog.d(e: Throwable? = null, noinline messageBuilder: () -> String)
inline fun KSLog.d(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
inline fun KSLog.d(message: String, e: Throwable? = null)
inline fun KSLog.d(    tag: String,     message: String,     e: Throwable? = null)
+
inline fun KSLog.d(e: Throwable? = null, noinline messageBuilder: () -> Any)
inline fun KSLog.d(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
inline fun KSLog.d(message: Any, e: Throwable? = null)
inline fun KSLog.d(    tag: String,     message: Any,     e: Throwable? = null)
- +
- +
Link copied to clipboard
-
inline fun KSLog.debug(e: Throwable? = null, noinline messageBuilder: () -> String)
inline fun KSLog.debug(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
inline fun KSLog.debug(message: String, e: Throwable? = null)
inline fun KSLog.debug(    tag: String,     message: String,     e: Throwable? = null)
+
inline fun KSLog.debug(e: Throwable? = null, noinline messageBuilder: () -> Any)
inline fun KSLog.debug(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
inline fun KSLog.debug(message: Any, e: Throwable? = null)
inline fun KSLog.debug(    tag: String,     message: Any,     e: Throwable? = null)
- +
- +
Link copied to clipboard
-
inline suspend fun KSLog.debugS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.debugS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.debugS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.debugS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)
- +
- +
Link copied to clipboard
-
inline suspend fun KSLog.dS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.dS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.dS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.dS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)
- +
- +
Link copied to clipboard
-
inline fun KSLog.e(e: Throwable? = null, noinline messageBuilder: () -> String)
inline fun KSLog.e(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
inline fun KSLog.e(message: String, e: Throwable? = null)
inline fun KSLog.e(    tag: String,     message: String,     e: Throwable? = null)
+
inline fun KSLog.e(e: Throwable? = null, noinline messageBuilder: () -> Any)
inline fun KSLog.e(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
inline fun KSLog.e(message: Any, e: Throwable? = null)
inline fun KSLog.e(    tag: String,     message: Any,     e: Throwable? = null)
- +
- +
Link copied to clipboard
-
inline fun KSLog.error(e: Throwable? = null, noinline messageBuilder: () -> String)
inline fun KSLog.error(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
inline fun KSLog.error(message: String, e: Throwable? = null)
inline fun KSLog.error(    tag: String,     message: String,     e: Throwable? = null)
+
inline fun KSLog.error(e: Throwable? = null, noinline messageBuilder: () -> Any)
inline fun KSLog.error(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
inline fun KSLog.error(message: Any, e: Throwable? = null)
inline fun KSLog.error(    tag: String,     message: Any,     e: Throwable? = null)
- +
- +
Link copied to clipboard
-
inline suspend fun KSLog.errorS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.errorS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.errorS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.errorS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)
- +
- +
Link copied to clipboard
-
inline suspend fun KSLog.eS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.eS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.eS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.eS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)
- + +
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+
fun KSLog.filtered(filter: MessageFilter): FilterKSLog
+
+
+
+
+
- +
Link copied to clipboard
-
inline fun KSLog.i(e: Throwable? = null, noinline messageBuilder: () -> String)
inline fun KSLog.i(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
inline fun KSLog.i(message: String, e: Throwable? = null)
inline fun KSLog.i(    tag: String,     message: String,     e: Throwable? = null)
+
inline fun KSLog.i(e: Throwable? = null, noinline messageBuilder: () -> Any)
inline fun KSLog.i(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
inline fun KSLog.i(message: Any, e: Throwable? = null)
inline fun KSLog.i(    tag: String,     message: Any,     e: Throwable? = null)
- +
- +
Link copied to clipboard
-
inline fun KSLog.info(e: Throwable? = null, noinline messageBuilder: () -> String)
inline fun KSLog.info(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
inline fun KSLog.info(message: String, e: Throwable? = null)
inline fun KSLog.info(    tag: String,     message: String,     e: Throwable? = null)
+
inline fun KSLog.info(e: Throwable? = null, noinline messageBuilder: () -> Any)
inline fun KSLog.info(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
inline fun KSLog.info(message: Any, e: Throwable? = null)
inline fun KSLog.info(    tag: String,     message: Any,     e: Throwable? = null)
- +
- +
Link copied to clipboard
-
inline suspend fun KSLog.infoS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.infoS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.infoS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.infoS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)
- +
- +
Link copied to clipboard
-
operator fun KSLog.invoke(performLogCallback: (level: LogLevel, tag: String?, message: String, throwable: Throwable?) -> Unit): CallbackKSLog
+
operator fun KSLog.invoke(performLogCallback: (level: LogLevel, tag: String?, message: Any, throwable: Throwable?) -> Unit): CallbackKSLog
- +
- +
Link copied to clipboard
-
inline suspend fun KSLog.iS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.iS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.iS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.iS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)
- +
- +
Link copied to clipboard
-
inline fun KSLog.l(    level: LogLevel,     tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
inline fun KSLog.l(    level: LogLevel,     e: Throwable? = null,     noinline messageBuilder: () -> String)
inline fun KSLog.l(    level: LogLevel,     message: String,     e: Throwable? = null)
inline fun KSLog.l(    level: LogLevel,     tag: String,     message: String,     e: Throwable? = null)
+
inline fun KSLog.l(    level: LogLevel,     tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
inline fun KSLog.l(    level: LogLevel,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
inline fun KSLog.l(    level: LogLevel,     message: Any,     e: Throwable? = null)
inline fun KSLog.l(    level: LogLevel,     tag: String,     message: Any,     e: Throwable? = null)
- +
- +
Link copied to clipboard
-
inline fun KSLog.log(    level: LogLevel,     tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
inline fun KSLog.log(    level: LogLevel,     e: Throwable? = null,     noinline messageBuilder: () -> String)
inline fun KSLog.log(    level: LogLevel,     message: String,     e: Throwable? = null)
inline fun KSLog.log(    level: LogLevel,     tag: String,     message: String,     e: Throwable? = null)
+
inline fun KSLog.log(    level: LogLevel,     tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
inline fun KSLog.log(    level: LogLevel,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
inline fun KSLog.log(    level: LogLevel,     message: Any,     e: Throwable? = null)
inline fun KSLog.log(    level: LogLevel,     tag: String,     message: Any,     e: Throwable? = null)
- +
- +
Link copied to clipboard
-
inline suspend fun KSLog.logS(    level: LogLevel,     tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.logS(    level: LogLevel,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.logS(    level: LogLevel,     tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.logS(    level: LogLevel,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)
- +
- +
Link copied to clipboard
-
inline suspend fun KSLog.lS(    level: LogLevel,     tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.lS(    level: LogLevel,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.lS(    level: LogLevel,     tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.lS(    level: LogLevel,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)
- +
- +
Link copied to clipboard
-
inline fun KSLog.v(e: Throwable? = null, noinline messageBuilder: () -> String)
inline fun KSLog.v(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
inline fun KSLog.v(message: String, e: Throwable? = null)
inline fun KSLog.v(    tag: String,     message: String,     e: Throwable? = null)
+
inline fun KSLog.v(e: Throwable? = null, noinline messageBuilder: () -> Any)
inline fun KSLog.v(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
inline fun KSLog.v(message: Any, e: Throwable? = null)
inline fun KSLog.v(    tag: String,     message: Any,     e: Throwable? = null)
- +
- +
Link copied to clipboard
-
inline fun KSLog.verbose(e: Throwable? = null, noinline messageBuilder: () -> String)
inline fun KSLog.verbose(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
inline fun KSLog.verbose(message: String, e: Throwable? = null)
inline fun KSLog.verbose(    tag: String,     message: String,     e: Throwable? = null)
+
inline fun KSLog.verbose(e: Throwable? = null, noinline messageBuilder: () -> Any)
inline fun KSLog.verbose(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
inline fun KSLog.verbose(message: Any, e: Throwable? = null)
inline fun KSLog.verbose(    tag: String,     message: Any,     e: Throwable? = null)
- +
- +
Link copied to clipboard
-
inline suspend fun KSLog.verboseS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.verboseS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.verboseS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.verboseS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)
- +
- +
Link copied to clipboard
-
inline suspend fun KSLog.vS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.vS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.vS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.vS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)
- +
- +
Link copied to clipboard
-
inline fun KSLog.w(e: Throwable? = null, noinline messageBuilder: () -> String)
inline fun KSLog.w(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
inline fun KSLog.w(message: String, e: Throwable? = null)
inline fun KSLog.w(    tag: String,     message: String,     e: Throwable? = null)
+
inline fun KSLog.w(e: Throwable? = null, noinline messageBuilder: () -> Any)
inline fun KSLog.w(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
inline fun KSLog.w(message: Any, e: Throwable? = null)
inline fun KSLog.w(    tag: String,     message: Any,     e: Throwable? = null)
- +
- +
Link copied to clipboard
-
inline fun KSLog.warning(e: Throwable? = null, noinline messageBuilder: () -> String)
inline fun KSLog.warning(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
inline fun KSLog.warning(message: String, e: Throwable? = null)
inline fun KSLog.warning(    tag: String,     message: String,     e: Throwable? = null)
+
inline fun KSLog.warning(e: Throwable? = null, noinline messageBuilder: () -> Any)
inline fun KSLog.warning(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
inline fun KSLog.warning(message: Any, e: Throwable? = null)
inline fun KSLog.warning(    tag: String,     message: Any,     e: Throwable? = null)
- +
- +
Link copied to clipboard
-
inline suspend fun KSLog.warningS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.warningS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.warningS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.warningS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)
- +
- +
Link copied to clipboard
-
inline suspend fun KSLog.wS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.wS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.wS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.wS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)
- +
- +
Link copied to clipboard
-
inline fun KSLog.wtf(e: Throwable? = null, noinline messageBuilder: () -> String)
inline fun KSLog.wtf(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
inline fun KSLog.wtf(message: String, e: Throwable? = null)
inline fun KSLog.wtf(    tag: String,     message: String,     e: Throwable? = null)
+
inline fun KSLog.wtf(e: Throwable? = null, noinline messageBuilder: () -> Any)
inline fun KSLog.wtf(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
inline fun KSLog.wtf(message: Any, e: Throwable? = null)
inline fun KSLog.wtf(    tag: String,     message: Any,     e: Throwable? = null)
- +
- +
Link copied to clipboard
-
inline suspend fun KSLog.wtfS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.wtfS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.wtfS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.wtfS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)

Sources

-
+
- +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/-k-s-log/perform-log-s.html b/kslog/dev.inmo.kslog.common/-k-s-log/perform-log-s.html index fc23865..1ed0626 100644 --- a/kslog/dev.inmo.kslog.common/-k-s-log/perform-log-s.html +++ b/kslog/dev.inmo.kslog.common/-k-s-log/perform-log-s.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,21 +45,21 @@ if(savedDarkMode === true){
-
+

performLogS

-
open suspend fun performLogS(    level: LogLevel,     tag: String?,     throwable: Throwable?,     messageBuilder: suspend () -> String)
+
open suspend fun performLogS(    level: LogLevel,     tag: String?,     throwable: Throwable?,     messageBuilder: suspend () -> Any)

Sources

-
+
- - + +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/-k-s-log/perform-log.html b/kslog/dev.inmo.kslog.common/-k-s-log/perform-log.html index ace9acd..9a605e0 100644 --- a/kslog/dev.inmo.kslog.common/-k-s-log/perform-log.html +++ b/kslog/dev.inmo.kslog.common/-k-s-log/perform-log.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,43 +45,43 @@ if(savedDarkMode === true){
-
+

performLog

-
abstract fun performLog(    level: LogLevel,     tag: String?,     message: String,     throwable: Throwable?)
open fun performLog(    level: LogLevel,     message: String,     throwable: Throwable?)
open fun performLog(    level: LogLevel,     tag: String?,     throwable: Throwable?,     messageBuilder: () -> String)
+
abstract fun performLog(    level: LogLevel,     tag: String?,     message: Any,     throwable: Throwable?)
open fun performLog(    level: LogLevel,     message: Any,     throwable: Throwable?)
open fun performLog(    level: LogLevel,     tag: String?,     throwable: Throwable?,     messageBuilder: () -> Any)

Sources

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
- +
- + +
Link copied to clipboard
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
+ +
+
+
+ +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/-log-level/-a-s-s-e-r-t/index.html b/kslog/dev.inmo.kslog.common/-log-level/-a-s-s-e-r-t/index.html index 9ae7c20..c40ca2d 100644 --- a/kslog/dev.inmo.kslog.common/-log-level/-a-s-s-e-r-t/index.html +++ b/kslog/dev.inmo.kslog.common/-log-level/-a-s-s-e-r-t/index.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
diff --git a/kslog/dev.inmo.kslog.common/-log-level/-d-e-b-u-g/index.html b/kslog/dev.inmo.kslog.common/-log-level/-d-e-b-u-g/index.html index bb65845..eb75a20 100644 --- a/kslog/dev.inmo.kslog.common/-log-level/-d-e-b-u-g/index.html +++ b/kslog/dev.inmo.kslog.common/-log-level/-d-e-b-u-g/index.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
diff --git a/kslog/dev.inmo.kslog.common/-log-level/-e-r-r-o-r/index.html b/kslog/dev.inmo.kslog.common/-log-level/-e-r-r-o-r/index.html index 850724c..d4d9c53 100644 --- a/kslog/dev.inmo.kslog.common/-log-level/-e-r-r-o-r/index.html +++ b/kslog/dev.inmo.kslog.common/-log-level/-e-r-r-o-r/index.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
diff --git a/kslog/dev.inmo.kslog.common/-log-level/-i-n-f-o/index.html b/kslog/dev.inmo.kslog.common/-log-level/-i-n-f-o/index.html index ffcfd4f..7c6e276 100644 --- a/kslog/dev.inmo.kslog.common/-log-level/-i-n-f-o/index.html +++ b/kslog/dev.inmo.kslog.common/-log-level/-i-n-f-o/index.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
diff --git a/kslog/dev.inmo.kslog.common/-log-level/-v-e-r-b-o-s-e/index.html b/kslog/dev.inmo.kslog.common/-log-level/-v-e-r-b-o-s-e/index.html index 0e47461..c08f4fe 100644 --- a/kslog/dev.inmo.kslog.common/-log-level/-v-e-r-b-o-s-e/index.html +++ b/kslog/dev.inmo.kslog.common/-log-level/-v-e-r-b-o-s-e/index.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
diff --git a/kslog/dev.inmo.kslog.common/-log-level/-w-a-r-n-i-n-g/index.html b/kslog/dev.inmo.kslog.common/-log-level/-w-a-r-n-i-n-g/index.html index fdbaef9..ff722a7 100644 --- a/kslog/dev.inmo.kslog.common/-log-level/-w-a-r-n-i-n-g/index.html +++ b/kslog/dev.inmo.kslog.common/-log-level/-w-a-r-n-i-n-g/index.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
diff --git a/kslog/dev.inmo.kslog.common/-log-level/index.html b/kslog/dev.inmo.kslog.common/-log-level/index.html index b6c9e1f..7fd97ff 100644 --- a/kslog/dev.inmo.kslog.common/-log-level/index.html +++ b/kslog/dev.inmo.kslog.common/-log-level/index.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -197,11 +197,11 @@ if(savedDarkMode === true){

Sources

-
+
- +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/-tag-logger/-tag-logger.html b/kslog/dev.inmo.kslog.common/-tag-logger/-tag-logger.html index 143e94f..90ebe9e 100644 --- a/kslog/dev.inmo.kslog.common/-tag-logger/-tag-logger.html +++ b/kslog/dev.inmo.kslog.common/-tag-logger/-tag-logger.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
diff --git a/kslog/dev.inmo.kslog.common/-tag-logger/index.html b/kslog/dev.inmo.kslog.common/-tag-logger/index.html index e246cf1..ff88719 100644 --- a/kslog/dev.inmo.kslog.common/-tag-logger/index.html +++ b/kslog/dev.inmo.kslog.common/-tag-logger/index.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -76,36 +76,36 @@ if(savedDarkMode === true){

Functions

-
+
- +
Link copied to clipboard
-
open fun performLog(    level: LogLevel,     message: String,     throwable: Throwable?)
open fun performLog(    level: LogLevel,     tag: String?,     throwable: Throwable?,     messageBuilder: () -> String)
open override fun performLog(    level: LogLevel,     tag: String?,     message: String,     throwable: Throwable?)
+
open fun performLog(    level: LogLevel,     message: Any,     throwable: Throwable?)
open fun performLog(    level: LogLevel,     tag: String?,     throwable: Throwable?,     messageBuilder: () -> Any)
open override fun performLog(    level: LogLevel,     tag: String?,     message: Any,     throwable: Throwable?)
- +
- +
Link copied to clipboard
-
open suspend fun performLogS(    level: LogLevel,     tag: String?,     throwable: Throwable?,     messageBuilder: suspend () -> String)
+
open suspend fun performLogS(    level: LogLevel,     tag: String?,     throwable: Throwable?,     messageBuilder: suspend () -> Any)
diff --git a/kslog/dev.inmo.kslog.common/-tag-logger/perform-log.html b/kslog/dev.inmo.kslog.common/-tag-logger/perform-log.html index caa0d02..fd4bbff 100644 --- a/kslog/dev.inmo.kslog.common/-tag-logger/perform-log.html +++ b/kslog/dev.inmo.kslog.common/-tag-logger/perform-log.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,21 +45,21 @@ if(savedDarkMode === true){
-
+

performLog

-
open override fun performLog(    level: LogLevel,     tag: String?,     message: String,     throwable: Throwable?)
+
open override fun performLog(    level: LogLevel,     tag: String?,     message: Any,     throwable: Throwable?)

Sources

-
+
- +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/-tag-logger/tag.html b/kslog/dev.inmo.kslog.common/-tag-logger/tag.html index c0e6f05..ec978ee 100644 --- a/kslog/dev.inmo.kslog.common/-tag-logger/tag.html +++ b/kslog/dev.inmo.kslog.common/-tag-logger/tag.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
diff --git a/kslog/dev.inmo.kslog.common/assert-s.html b/kslog/dev.inmo.kslog.common/assert-s.html index fea9c18..da985fd 100644 --- a/kslog/dev.inmo.kslog.common/assert-s.html +++ b/kslog/dev.inmo.kslog.common/assert-s.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,32 +45,32 @@ if(savedDarkMode === true){
-
+

assertS

-
inline suspend fun KSLog.assertS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.assertS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.assertS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.assertS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)

Sources

-
+
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/assert.html b/kslog/dev.inmo.kslog.common/assert.html index 49d1fb7..d55c3be 100644 --- a/kslog/dev.inmo.kslog.common/assert.html +++ b/kslog/dev.inmo.kslog.common/assert.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,54 +45,54 @@ if(savedDarkMode === true){
-
+

assert

-
inline fun KSLog.assert(e: Throwable? = null, noinline messageBuilder: () -> String)
inline fun KSLog.assert(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
inline fun KSLog.assert(message: String, e: Throwable? = null)
inline fun KSLog.assert(    tag: String,     message: String,     e: Throwable? = null)
+
inline fun KSLog.assert(e: Throwable? = null, noinline messageBuilder: () -> Any)
inline fun KSLog.assert(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
inline fun KSLog.assert(message: Any, e: Throwable? = null)
inline fun KSLog.assert(    tag: String,     message: Any,     e: Throwable? = null)

Sources

-
+
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/d-s.html b/kslog/dev.inmo.kslog.common/d-s.html index c29fd68..4689aaf 100644 --- a/kslog/dev.inmo.kslog.common/d-s.html +++ b/kslog/dev.inmo.kslog.common/d-s.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,32 +45,32 @@ if(savedDarkMode === true){
-
+

dS

-
inline suspend fun KSLog.dS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.dS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.dS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.dS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)

Sources

-
+
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/d.html b/kslog/dev.inmo.kslog.common/d.html index 05978c1..861b7e7 100644 --- a/kslog/dev.inmo.kslog.common/d.html +++ b/kslog/dev.inmo.kslog.common/d.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,54 +45,54 @@ if(savedDarkMode === true){
-
+

d

-
inline fun KSLog.d(e: Throwable? = null, noinline messageBuilder: () -> String)
inline fun KSLog.d(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
inline fun KSLog.d(message: String, e: Throwable? = null)
inline fun KSLog.d(    tag: String,     message: String,     e: Throwable? = null)
+
inline fun KSLog.d(e: Throwable? = null, noinline messageBuilder: () -> Any)
inline fun KSLog.d(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
inline fun KSLog.d(message: Any, e: Throwable? = null)
inline fun KSLog.d(    tag: String,     message: Any,     e: Throwable? = null)

Sources

-
+
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/debug-s.html b/kslog/dev.inmo.kslog.common/debug-s.html index cf5f5db..7330617 100644 --- a/kslog/dev.inmo.kslog.common/debug-s.html +++ b/kslog/dev.inmo.kslog.common/debug-s.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,32 +45,32 @@ if(savedDarkMode === true){
-
+

debugS

-
inline suspend fun KSLog.debugS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.debugS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.debugS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.debugS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)

Sources

-
+
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/debug.html b/kslog/dev.inmo.kslog.common/debug.html index dff01b8..e866242 100644 --- a/kslog/dev.inmo.kslog.common/debug.html +++ b/kslog/dev.inmo.kslog.common/debug.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,54 +45,54 @@ if(savedDarkMode === true){
-
+

debug

-
inline fun KSLog.debug(e: Throwable? = null, noinline messageBuilder: () -> String)
inline fun KSLog.debug(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
inline fun KSLog.debug(message: String, e: Throwable? = null)
inline fun KSLog.debug(    tag: String,     message: String,     e: Throwable? = null)
+
inline fun KSLog.debug(e: Throwable? = null, noinline messageBuilder: () -> Any)
inline fun KSLog.debug(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
inline fun KSLog.debug(message: Any, e: Throwable? = null)
inline fun KSLog.debug(    tag: String,     message: Any,     e: Throwable? = null)

Sources

-
+
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/default-message-formatter.html b/kslog/dev.inmo.kslog.common/default-message-formatter.html index 28d9f07..4e8b74b 100644 --- a/kslog/dev.inmo.kslog.common/default-message-formatter.html +++ b/kslog/dev.inmo.kslog.common/default-message-formatter.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
diff --git a/kslog/dev.inmo.kslog.common/e-s.html b/kslog/dev.inmo.kslog.common/e-s.html index 2f93335..d821052 100644 --- a/kslog/dev.inmo.kslog.common/e-s.html +++ b/kslog/dev.inmo.kslog.common/e-s.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,32 +45,32 @@ if(savedDarkMode === true){
-
+

eS

-
inline suspend fun KSLog.eS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.eS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.eS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.eS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)

Sources

-
+
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/e.html b/kslog/dev.inmo.kslog.common/e.html index b18f65d..a311321 100644 --- a/kslog/dev.inmo.kslog.common/e.html +++ b/kslog/dev.inmo.kslog.common/e.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,54 +45,54 @@ if(savedDarkMode === true){
-
+

e

-
inline fun KSLog.e(e: Throwable? = null, noinline messageBuilder: () -> String)
inline fun KSLog.e(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
inline fun KSLog.e(message: String, e: Throwable? = null)
inline fun KSLog.e(    tag: String,     message: String,     e: Throwable? = null)
+
inline fun KSLog.e(e: Throwable? = null, noinline messageBuilder: () -> Any)
inline fun KSLog.e(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
inline fun KSLog.e(message: Any, e: Throwable? = null)
inline fun KSLog.e(    tag: String,     message: Any,     e: Throwable? = null)

Sources

-
+
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/error-s.html b/kslog/dev.inmo.kslog.common/error-s.html index 8914e60..40bdf74 100644 --- a/kslog/dev.inmo.kslog.common/error-s.html +++ b/kslog/dev.inmo.kslog.common/error-s.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,32 +45,32 @@ if(savedDarkMode === true){
-
+

errorS

-
inline suspend fun KSLog.errorS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.errorS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.errorS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.errorS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)

Sources

-
+
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/error.html b/kslog/dev.inmo.kslog.common/error.html index 31eb3da..85dc07b 100644 --- a/kslog/dev.inmo.kslog.common/error.html +++ b/kslog/dev.inmo.kslog.common/error.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,54 +45,54 @@ if(savedDarkMode === true){
-
+

error

-
inline fun KSLog.error(e: Throwable? = null, noinline messageBuilder: () -> String)
inline fun KSLog.error(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
inline fun KSLog.error(message: String, e: Throwable? = null)
inline fun KSLog.error(    tag: String,     message: String,     e: Throwable? = null)
+
inline fun KSLog.error(e: Throwable? = null, noinline messageBuilder: () -> Any)
inline fun KSLog.error(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
inline fun KSLog.error(message: Any, e: Throwable? = null)
inline fun KSLog.error(    tag: String,     message: Any,     e: Throwable? = null)

Sources

-
+
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/i-s.html b/kslog/dev.inmo.kslog.common/i-s.html index f774084..d81ddcf 100644 --- a/kslog/dev.inmo.kslog.common/i-s.html +++ b/kslog/dev.inmo.kslog.common/i-s.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,32 +45,32 @@ if(savedDarkMode === true){
-
+

iS

-
inline suspend fun KSLog.iS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.iS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.iS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.iS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)

Sources

-
+
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/i.html b/kslog/dev.inmo.kslog.common/i.html index 2620783..740d823 100644 --- a/kslog/dev.inmo.kslog.common/i.html +++ b/kslog/dev.inmo.kslog.common/i.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,54 +45,54 @@ if(savedDarkMode === true){
-
+

i

-
inline fun KSLog.i(e: Throwable? = null, noinline messageBuilder: () -> String)
inline fun KSLog.i(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
inline fun KSLog.i(message: String, e: Throwable? = null)
inline fun KSLog.i(    tag: String,     message: String,     e: Throwable? = null)
+
inline fun KSLog.i(e: Throwable? = null, noinline messageBuilder: () -> Any)
inline fun KSLog.i(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
inline fun KSLog.i(message: Any, e: Throwable? = null)
inline fun KSLog.i(    tag: String,     message: Any,     e: Throwable? = null)

Sources

-
+
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/index.html b/kslog/dev.inmo.kslog.common/index.html index b47fe17..662f597 100644 --- a/kslog/dev.inmo.kslog.common/index.html +++ b/kslog/dev.inmo.kslog.common/index.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -67,7 +67,7 @@ if(savedDarkMode === true){
-
class CallbackKSLog(performLogCallback: (level: LogLevel, tag: String?, message: String, throwable: Throwable?) -> Unit) : KSLog
+
class CallbackKSLog(performLogCallback: SimpleKSLogCallback) : KSLog
@@ -84,7 +84,7 @@ if(savedDarkMode === true){
-
class DefaultKSLog(    defaultTag: String,     val filter: MessageFilter = { _, _, _ -> true },     messageFormatter: MessageFormatter = defaultMessageFormatter,     logging: (level: LogLevel, tag: String, message: String, throwable: Throwable?) -> Unit = defaultLogging) : KSLog
+
class DefaultKSLog(    defaultTag: String,     messageFormatter: MessageFormatter = defaultMessageFormatter,     logging: (level: LogLevel, tag: String, message: Any, throwable: Throwable?) -> Unit = defaultLogging) : KSLog
@@ -152,7 +152,24 @@ if(savedDarkMode === true){
-
typealias MessageFormatter = (l: LogLevel, t: String, m: String, Throwable?) -> String
+
typealias MessageFormatter = (l: LogLevel, t: String, m: Any, Throwable?) -> String
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+
typealias SimpleKSLogCallback = (level: LogLevel, tag: String?, message: Any, throwable: Throwable?) -> Unit
@@ -176,512 +193,529 @@ if(savedDarkMode === true){

Functions

-
+
- +
Link copied to clipboard
-
inline fun KSLog.assert(message: String, e: Throwable? = null)
inline fun KSLog.assert(e: Throwable? = null, noinline messageBuilder: () -> String)
inline fun KSLog.assert(    tag: String,     message: String,     e: Throwable? = null)
inline fun KSLog.assert(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
+
inline fun KSLog.assert(message: Any, e: Throwable? = null)
inline fun KSLog.assert(e: Throwable? = null, noinline messageBuilder: () -> Any)
inline fun KSLog.assert(    tag: String,     message: Any,     e: Throwable? = null)
inline fun KSLog.assert(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
- +
- +
Link copied to clipboard
-
inline suspend fun KSLog.assertS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.assertS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.assertS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.assertS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)
- +
- +
Link copied to clipboard
-
inline fun KSLog.d(message: String, e: Throwable? = null)
inline fun KSLog.d(e: Throwable? = null, noinline messageBuilder: () -> String)
inline fun KSLog.d(    tag: String,     message: String,     e: Throwable? = null)
inline fun KSLog.d(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
+
inline fun KSLog.d(message: Any, e: Throwable? = null)
inline fun KSLog.d(e: Throwable? = null, noinline messageBuilder: () -> Any)
inline fun KSLog.d(    tag: String,     message: Any,     e: Throwable? = null)
inline fun KSLog.d(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
- +
- +
Link copied to clipboard
-
inline fun KSLog.debug(message: String, e: Throwable? = null)
inline fun KSLog.debug(e: Throwable? = null, noinline messageBuilder: () -> String)
inline fun KSLog.debug(    tag: String,     message: String,     e: Throwable? = null)
inline fun KSLog.debug(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
+
inline fun KSLog.debug(message: Any, e: Throwable? = null)
inline fun KSLog.debug(e: Throwable? = null, noinline messageBuilder: () -> Any)
inline fun KSLog.debug(    tag: String,     message: Any,     e: Throwable? = null)
inline fun KSLog.debug(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
- +
- +
Link copied to clipboard
-
inline suspend fun KSLog.debugS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.debugS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.debugS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.debugS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)
- +
- +
Link copied to clipboard
-
inline suspend fun KSLog.dS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.dS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.dS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.dS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)
- +
- +
Link copied to clipboard
-
inline fun KSLog.e(message: String, e: Throwable? = null)
inline fun KSLog.e(e: Throwable? = null, noinline messageBuilder: () -> String)
inline fun KSLog.e(    tag: String,     message: String,     e: Throwable? = null)
inline fun KSLog.e(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
+
inline fun KSLog.e(message: Any, e: Throwable? = null)
inline fun KSLog.e(e: Throwable? = null, noinline messageBuilder: () -> Any)
inline fun KSLog.e(    tag: String,     message: Any,     e: Throwable? = null)
inline fun KSLog.e(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
- +
- +
Link copied to clipboard
-
inline fun KSLog.error(message: String, e: Throwable? = null)
inline fun KSLog.error(e: Throwable? = null, noinline messageBuilder: () -> String)
inline fun KSLog.error(    tag: String,     message: String,     e: Throwable? = null)
inline fun KSLog.error(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
+
inline fun KSLog.error(message: Any, e: Throwable? = null)
inline fun KSLog.error(e: Throwable? = null, noinline messageBuilder: () -> Any)
inline fun KSLog.error(    tag: String,     message: Any,     e: Throwable? = null)
inline fun KSLog.error(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
- +
- +
Link copied to clipboard
-
inline suspend fun KSLog.errorS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.errorS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.errorS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.errorS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)
- +
- +
Link copied to clipboard
-
inline suspend fun KSLog.eS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.eS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.eS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.eS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)
- +
- +
Link copied to clipboard
-
inline fun KSLog.i(message: String, e: Throwable? = null)
inline fun KSLog.i(e: Throwable? = null, noinline messageBuilder: () -> String)
inline fun KSLog.i(    tag: String,     message: String,     e: Throwable? = null)
inline fun KSLog.i(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
+
inline fun KSLog.i(message: Any, e: Throwable? = null)
inline fun KSLog.i(e: Throwable? = null, noinline messageBuilder: () -> Any)
inline fun KSLog.i(    tag: String,     message: Any,     e: Throwable? = null)
inline fun KSLog.i(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
- +
- +
Link copied to clipboard
-
inline fun KSLog.info(message: String, e: Throwable? = null)
inline fun KSLog.info(e: Throwable? = null, noinline messageBuilder: () -> String)
inline fun KSLog.info(    tag: String,     message: String,     e: Throwable? = null)
inline fun KSLog.info(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
+
inline fun KSLog.info(message: Any, e: Throwable? = null)
inline fun KSLog.info(e: Throwable? = null, noinline messageBuilder: () -> Any)
inline fun KSLog.info(    tag: String,     message: Any,     e: Throwable? = null)
inline fun KSLog.info(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
- +
- +
Link copied to clipboard
-
inline suspend fun KSLog.infoS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.infoS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.infoS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.infoS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)
- +
- +
Link copied to clipboard
-
operator fun KSLog.invoke(performLogCallback: (level: LogLevel, tag: String?, message: String, throwable: Throwable?) -> Unit): CallbackKSLog
+
operator fun KSLog.invoke(performLogCallback: (level: LogLevel, tag: String?, message: Any, throwable: Throwable?) -> Unit): CallbackKSLog
- +
- +
Link copied to clipboard
-
inline suspend fun KSLog.iS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.iS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.iS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.iS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)
- +
- +
Link copied to clipboard
-
fun KSLog(    defaultTag: String,     minLoggingLevel: LogLevel,     messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog
fun KSLog(    defaultTag: String,     filter: MessageFilter = { _, _, _ -> true },     messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog
fun KSLog(    defaultTag: String,     levels: Iterable<LogLevel>,     messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog
fun KSLog(    defaultTag: String,     firstLevel: LogLevel,     secondLevel: LogLevel,     vararg otherLevels: LogLevel,     messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog
fun KSLog(    defaultTag: String,     logger: Logger,     minLoggingLevel: LogLevel = LogLevel.values().first(),     messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog
fun KSLog(    defaultTag: String,     logger: Logger,     filter: MessageFilter = { _, _, _ -> true },     messageFormatter: MessageFormatter = defaultMessageFormatter): CallbackKSLog
fun KSLog(    defaultTag: String,     logger: Logger,     levels: Iterable<LogLevel>,     messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog
fun KSLog(    defaultTag: String,     logger: Logger,     firstLevel: LogLevel,     secondLevel: LogLevel,     vararg otherLevels: LogLevel,     messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog
+
fun KSLog(defaultTag: String, messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog
fun KSLog(    defaultTag: String,     minLoggingLevel: LogLevel,     messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog
fun KSLog(    defaultTag: String,     levels: Iterable<LogLevel>,     messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog
fun KSLog(    defaultTag: String,     firstLevel: LogLevel,     secondLevel: LogLevel,     vararg otherLevels: LogLevel,     messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog
fun KSLog(    defaultTag: String,     logger: Logger,     messageFormatter: MessageFormatter = defaultMessageFormatter): CallbackKSLog
fun KSLog(    defaultTag: String,     logger: Logger,     minLoggingLevel: LogLevel = LogLevel.values().first(),     messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog
fun KSLog(    defaultTag: String,     logger: Logger,     levels: Iterable<LogLevel>,     messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog
fun KSLog(    defaultTag: String,     logger: Logger,     firstLevel: LogLevel,     secondLevel: LogLevel,     vararg otherLevels: LogLevel,     messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog
- +
- +
Link copied to clipboard
-
inline fun KSLog.l(    level: LogLevel,     message: String,     e: Throwable? = null)
inline fun KSLog.l(    level: LogLevel,     e: Throwable? = null,     noinline messageBuilder: () -> String)
inline fun KSLog.l(    level: LogLevel,     tag: String,     message: String,     e: Throwable? = null)
inline fun KSLog.l(    level: LogLevel,     tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
+
inline fun KSLog.l(    level: LogLevel,     message: Any,     e: Throwable? = null)
inline fun KSLog.l(    level: LogLevel,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
inline fun KSLog.l(    level: LogLevel,     tag: String,     message: Any,     e: Throwable? = null)
inline fun KSLog.l(    level: LogLevel,     tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
- +
- +
Link copied to clipboard
-
inline fun KSLog.log(    level: LogLevel,     message: String,     e: Throwable? = null)
inline fun KSLog.log(    level: LogLevel,     e: Throwable? = null,     noinline messageBuilder: () -> String)
inline fun KSLog.log(    level: LogLevel,     tag: String,     message: String,     e: Throwable? = null)
inline fun KSLog.log(    level: LogLevel,     tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
+
inline fun KSLog.log(    level: LogLevel,     message: Any,     e: Throwable? = null)
inline fun KSLog.log(    level: LogLevel,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
inline fun KSLog.log(    level: LogLevel,     tag: String,     message: Any,     e: Throwable? = null)
inline fun KSLog.log(    level: LogLevel,     tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
- +
- +
Link copied to clipboard
-
inline suspend fun KSLog.logS(    level: LogLevel,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.logS(    level: LogLevel,     tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.logS(    level: LogLevel,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.logS(    level: LogLevel,     tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)
- +
- +
Link copied to clipboard
-
inline suspend fun KSLog.lS(    level: LogLevel,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.lS(    level: LogLevel,     tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.lS(    level: LogLevel,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.lS(    level: LogLevel,     tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)
- + +
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+
fun taggedLogger(tagBase: Any): KSLog
+
+
+
+
+
- +
Link copied to clipboard
-
inline fun KSLog.v(message: String, e: Throwable? = null)
inline fun KSLog.v(e: Throwable? = null, noinline messageBuilder: () -> String)
inline fun KSLog.v(    tag: String,     message: String,     e: Throwable? = null)
inline fun KSLog.v(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
+
inline fun KSLog.v(message: Any, e: Throwable? = null)
inline fun KSLog.v(e: Throwable? = null, noinline messageBuilder: () -> Any)
inline fun KSLog.v(    tag: String,     message: Any,     e: Throwable? = null)
inline fun KSLog.v(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
- +
- +
Link copied to clipboard
-
inline fun KSLog.verbose(message: String, e: Throwable? = null)
inline fun KSLog.verbose(e: Throwable? = null, noinline messageBuilder: () -> String)
inline fun KSLog.verbose(    tag: String,     message: String,     e: Throwable? = null)
inline fun KSLog.verbose(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
+
inline fun KSLog.verbose(message: Any, e: Throwable? = null)
inline fun KSLog.verbose(e: Throwable? = null, noinline messageBuilder: () -> Any)
inline fun KSLog.verbose(    tag: String,     message: Any,     e: Throwable? = null)
inline fun KSLog.verbose(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
- +
- +
Link copied to clipboard
-
inline suspend fun KSLog.verboseS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.verboseS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.verboseS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.verboseS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)
- +
- +
Link copied to clipboard
-
inline suspend fun KSLog.vS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.vS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.vS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.vS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)
- +
- +
Link copied to clipboard
-
inline fun KSLog.w(message: String, e: Throwable? = null)
inline fun KSLog.w(e: Throwable? = null, noinline messageBuilder: () -> String)
inline fun KSLog.w(    tag: String,     message: String,     e: Throwable? = null)
inline fun KSLog.w(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
+
inline fun KSLog.w(message: Any, e: Throwable? = null)
inline fun KSLog.w(e: Throwable? = null, noinline messageBuilder: () -> Any)
inline fun KSLog.w(    tag: String,     message: Any,     e: Throwable? = null)
inline fun KSLog.w(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
- +
- +
Link copied to clipboard
-
inline fun KSLog.warning(message: String, e: Throwable? = null)
inline fun KSLog.warning(e: Throwable? = null, noinline messageBuilder: () -> String)
inline fun KSLog.warning(    tag: String,     message: String,     e: Throwable? = null)
inline fun KSLog.warning(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
+
inline fun KSLog.warning(message: Any, e: Throwable? = null)
inline fun KSLog.warning(e: Throwable? = null, noinline messageBuilder: () -> Any)
inline fun KSLog.warning(    tag: String,     message: Any,     e: Throwable? = null)
inline fun KSLog.warning(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
- +
- +
Link copied to clipboard
-
inline suspend fun KSLog.warningS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.warningS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.warningS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.warningS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)
- +
- +
Link copied to clipboard
-
inline suspend fun KSLog.wS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.wS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.wS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.wS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)
- +
- +
Link copied to clipboard
-
inline fun KSLog.wtf(message: String, e: Throwable? = null)
inline fun KSLog.wtf(e: Throwable? = null, noinline messageBuilder: () -> String)
inline fun KSLog.wtf(    tag: String,     message: String,     e: Throwable? = null)
inline fun KSLog.wtf(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
+
inline fun KSLog.wtf(message: Any, e: Throwable? = null)
inline fun KSLog.wtf(e: Throwable? = null, noinline messageBuilder: () -> Any)
inline fun KSLog.wtf(    tag: String,     message: Any,     e: Throwable? = null)
inline fun KSLog.wtf(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
- +
- +
Link copied to clipboard
-
inline suspend fun KSLog.wtfS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.wtfS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.wtfS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.wtfS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)
diff --git a/kslog/dev.inmo.kslog.common/info-s.html b/kslog/dev.inmo.kslog.common/info-s.html index 6747c06..e274047 100644 --- a/kslog/dev.inmo.kslog.common/info-s.html +++ b/kslog/dev.inmo.kslog.common/info-s.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,32 +45,32 @@ if(savedDarkMode === true){
-
+

infoS

-
inline suspend fun KSLog.infoS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.infoS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.infoS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.infoS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)

Sources

-
+
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/info.html b/kslog/dev.inmo.kslog.common/info.html index e98777d..fb55fb3 100644 --- a/kslog/dev.inmo.kslog.common/info.html +++ b/kslog/dev.inmo.kslog.common/info.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,54 +45,54 @@ if(savedDarkMode === true){
-
+

info

-
inline fun KSLog.info(e: Throwable? = null, noinline messageBuilder: () -> String)
inline fun KSLog.info(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
inline fun KSLog.info(message: String, e: Throwable? = null)
inline fun KSLog.info(    tag: String,     message: String,     e: Throwable? = null)
+
inline fun KSLog.info(e: Throwable? = null, noinline messageBuilder: () -> Any)
inline fun KSLog.info(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
inline fun KSLog.info(message: Any, e: Throwable? = null)
inline fun KSLog.info(    tag: String,     message: Any,     e: Throwable? = null)

Sources

-
+
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/invoke.html b/kslog/dev.inmo.kslog.common/invoke.html index 718b584..e2f8b4d 100644 --- a/kslog/dev.inmo.kslog.common/invoke.html +++ b/kslog/dev.inmo.kslog.common/invoke.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,21 +45,21 @@ if(savedDarkMode === true){
-
+

invoke

-
operator fun KSLog.invoke(performLogCallback: (level: LogLevel, tag: String?, message: String, throwable: Throwable?) -> Unit): CallbackKSLog
+
operator fun KSLog.invoke(performLogCallback: (level: LogLevel, tag: String?, message: Any, throwable: Throwable?) -> Unit): CallbackKSLog

Sources

-
+
- - + +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/l-s.html b/kslog/dev.inmo.kslog.common/l-s.html index 6afd8c0..896098b 100644 --- a/kslog/dev.inmo.kslog.common/l-s.html +++ b/kslog/dev.inmo.kslog.common/l-s.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,32 +45,32 @@ if(savedDarkMode === true){
-
+

lS

-
inline suspend fun KSLog.lS(    level: LogLevel,     tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.lS(    level: LogLevel,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.lS(    level: LogLevel,     tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.lS(    level: LogLevel,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)

Sources

-
+
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/l.html b/kslog/dev.inmo.kslog.common/l.html index 0726f4c..6569209 100644 --- a/kslog/dev.inmo.kslog.common/l.html +++ b/kslog/dev.inmo.kslog.common/l.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,54 +45,54 @@ if(savedDarkMode === true){
-
+

l

-
inline fun KSLog.l(    level: LogLevel,     tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
inline fun KSLog.l(    level: LogLevel,     e: Throwable? = null,     noinline messageBuilder: () -> String)
inline fun KSLog.l(    level: LogLevel,     message: String,     e: Throwable? = null)
inline fun KSLog.l(    level: LogLevel,     tag: String,     message: String,     e: Throwable? = null)
+
inline fun KSLog.l(    level: LogLevel,     tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
inline fun KSLog.l(    level: LogLevel,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
inline fun KSLog.l(    level: LogLevel,     message: Any,     e: Throwable? = null)
inline fun KSLog.l(    level: LogLevel,     tag: String,     message: Any,     e: Throwable? = null)

Sources

-
+
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/log-s.html b/kslog/dev.inmo.kslog.common/log-s.html index 99394dd..c481321 100644 --- a/kslog/dev.inmo.kslog.common/log-s.html +++ b/kslog/dev.inmo.kslog.common/log-s.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,32 +45,32 @@ if(savedDarkMode === true){
-
+

logS

-
inline suspend fun KSLog.logS(    level: LogLevel,     tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.logS(    level: LogLevel,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.logS(    level: LogLevel,     tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.logS(    level: LogLevel,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)

Sources

-
+
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/log-tag.html b/kslog/dev.inmo.kslog.common/log-tag.html index 46580ae..5d2f489 100644 --- a/kslog/dev.inmo.kslog.common/log-tag.html +++ b/kslog/dev.inmo.kslog.common/log-tag.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
diff --git a/kslog/dev.inmo.kslog.common/log.html b/kslog/dev.inmo.kslog.common/log.html index 06e556a..7709be2 100644 --- a/kslog/dev.inmo.kslog.common/log.html +++ b/kslog/dev.inmo.kslog.common/log.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,54 +45,54 @@ if(savedDarkMode === true){
-
+

log

-
inline fun KSLog.log(    level: LogLevel,     tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
inline fun KSLog.log(    level: LogLevel,     e: Throwable? = null,     noinline messageBuilder: () -> String)
inline fun KSLog.log(    level: LogLevel,     message: String,     e: Throwable? = null)
inline fun KSLog.log(    level: LogLevel,     tag: String,     message: String,     e: Throwable? = null)
+
inline fun KSLog.log(    level: LogLevel,     tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
inline fun KSLog.log(    level: LogLevel,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
inline fun KSLog.log(    level: LogLevel,     message: Any,     e: Throwable? = null)
inline fun KSLog.log(    level: LogLevel,     tag: String,     message: Any,     e: Throwable? = null)

Sources

-
+
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/logger.html b/kslog/dev.inmo.kslog.common/logger.html index cf482be..a1f4abf 100644 --- a/kslog/dev.inmo.kslog.common/logger.html +++ b/kslog/dev.inmo.kslog.common/logger.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
diff --git a/kslog/dev.inmo.kslog.common/tagged-logger.html b/kslog/dev.inmo.kslog.common/tagged-logger.html new file mode 100644 index 0000000..5a9d7d7 --- /dev/null +++ b/kslog/dev.inmo.kslog.common/tagged-logger.html @@ -0,0 +1,77 @@ + + + + + taggedLogger + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

taggedLogger

+
+
+
+
fun taggedLogger(tagBase: Any): KSLog
+

Sources

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+
+ +
+
+ + diff --git a/kslog/dev.inmo.kslog.common/v-s.html b/kslog/dev.inmo.kslog.common/v-s.html index 99116cc..dde72df 100644 --- a/kslog/dev.inmo.kslog.common/v-s.html +++ b/kslog/dev.inmo.kslog.common/v-s.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,32 +45,32 @@ if(savedDarkMode === true){
-
+

vS

-
inline suspend fun KSLog.vS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.vS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.vS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.vS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)

Sources

-
+
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/v.html b/kslog/dev.inmo.kslog.common/v.html index 4be0723..cef0eda 100644 --- a/kslog/dev.inmo.kslog.common/v.html +++ b/kslog/dev.inmo.kslog.common/v.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,54 +45,54 @@ if(savedDarkMode === true){
-
+

v

-
inline fun KSLog.v(e: Throwable? = null, noinline messageBuilder: () -> String)
inline fun KSLog.v(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
inline fun KSLog.v(message: String, e: Throwable? = null)
inline fun KSLog.v(    tag: String,     message: String,     e: Throwable? = null)
+
inline fun KSLog.v(e: Throwable? = null, noinline messageBuilder: () -> Any)
inline fun KSLog.v(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
inline fun KSLog.v(message: Any, e: Throwable? = null)
inline fun KSLog.v(    tag: String,     message: Any,     e: Throwable? = null)

Sources

-
+
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/verbose-s.html b/kslog/dev.inmo.kslog.common/verbose-s.html index 4c49861..8583dbd 100644 --- a/kslog/dev.inmo.kslog.common/verbose-s.html +++ b/kslog/dev.inmo.kslog.common/verbose-s.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,32 +45,32 @@ if(savedDarkMode === true){
-
+

verboseS

-
inline suspend fun KSLog.verboseS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.verboseS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.verboseS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.verboseS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)

Sources

-
+
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/verbose.html b/kslog/dev.inmo.kslog.common/verbose.html index 6a8c64f..8f3eed5 100644 --- a/kslog/dev.inmo.kslog.common/verbose.html +++ b/kslog/dev.inmo.kslog.common/verbose.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,54 +45,54 @@ if(savedDarkMode === true){
-
+

verbose

-
inline fun KSLog.verbose(e: Throwable? = null, noinline messageBuilder: () -> String)
inline fun KSLog.verbose(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
inline fun KSLog.verbose(message: String, e: Throwable? = null)
inline fun KSLog.verbose(    tag: String,     message: String,     e: Throwable? = null)
+
inline fun KSLog.verbose(e: Throwable? = null, noinline messageBuilder: () -> Any)
inline fun KSLog.verbose(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
inline fun KSLog.verbose(message: Any, e: Throwable? = null)
inline fun KSLog.verbose(    tag: String,     message: Any,     e: Throwable? = null)

Sources

-
+
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/w-s.html b/kslog/dev.inmo.kslog.common/w-s.html index 2ad0f0f..cc311d1 100644 --- a/kslog/dev.inmo.kslog.common/w-s.html +++ b/kslog/dev.inmo.kslog.common/w-s.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,32 +45,32 @@ if(savedDarkMode === true){
-
+

wS

-
inline suspend fun KSLog.wS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.wS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.wS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.wS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)

Sources

-
+
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/w.html b/kslog/dev.inmo.kslog.common/w.html index 18f02ae..abacae0 100644 --- a/kslog/dev.inmo.kslog.common/w.html +++ b/kslog/dev.inmo.kslog.common/w.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,54 +45,54 @@ if(savedDarkMode === true){
-
+

w

-
inline fun KSLog.w(e: Throwable? = null, noinline messageBuilder: () -> String)
inline fun KSLog.w(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
inline fun KSLog.w(message: String, e: Throwable? = null)
inline fun KSLog.w(    tag: String,     message: String,     e: Throwable? = null)
+
inline fun KSLog.w(e: Throwable? = null, noinline messageBuilder: () -> Any)
inline fun KSLog.w(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
inline fun KSLog.w(message: Any, e: Throwable? = null)
inline fun KSLog.w(    tag: String,     message: Any,     e: Throwable? = null)

Sources

-
+
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/warning-s.html b/kslog/dev.inmo.kslog.common/warning-s.html index aa251b3..fc6ffda 100644 --- a/kslog/dev.inmo.kslog.common/warning-s.html +++ b/kslog/dev.inmo.kslog.common/warning-s.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,32 +45,32 @@ if(savedDarkMode === true){
-
+

warningS

-
inline suspend fun KSLog.warningS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.warningS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.warningS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.warningS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)

Sources

-
+
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/warning.html b/kslog/dev.inmo.kslog.common/warning.html index bcb23ad..f980a31 100644 --- a/kslog/dev.inmo.kslog.common/warning.html +++ b/kslog/dev.inmo.kslog.common/warning.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,54 +45,54 @@ if(savedDarkMode === true){
-
+

warning

-
inline fun KSLog.warning(e: Throwable? = null, noinline messageBuilder: () -> String)
inline fun KSLog.warning(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
inline fun KSLog.warning(message: String, e: Throwable? = null)
inline fun KSLog.warning(    tag: String,     message: String,     e: Throwable? = null)
+
inline fun KSLog.warning(e: Throwable? = null, noinline messageBuilder: () -> Any)
inline fun KSLog.warning(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
inline fun KSLog.warning(message: Any, e: Throwable? = null)
inline fun KSLog.warning(    tag: String,     message: Any,     e: Throwable? = null)

Sources

-
+
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/wtf-s.html b/kslog/dev.inmo.kslog.common/wtf-s.html index fb956b1..7b915b4 100644 --- a/kslog/dev.inmo.kslog.common/wtf-s.html +++ b/kslog/dev.inmo.kslog.common/wtf-s.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,32 +45,32 @@ if(savedDarkMode === true){
-
+

wtfS

-
inline suspend fun KSLog.wtfS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)
inline suspend fun KSLog.wtfS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> String)
+
inline suspend fun KSLog.wtfS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)
inline suspend fun KSLog.wtfS(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: suspend () -> Any)

Sources

-
+
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
diff --git a/kslog/dev.inmo.kslog.common/wtf.html b/kslog/dev.inmo.kslog.common/wtf.html index 9f0b371..12168ec 100644 --- a/kslog/dev.inmo.kslog.common/wtf.html +++ b/kslog/dev.inmo.kslog.common/wtf.html @@ -31,7 +31,7 @@ if(savedDarkMode === true){
-0.3.2
+0.4.0
@@ -45,54 +45,54 @@ if(savedDarkMode === true){
-
+

wtf

-
inline fun KSLog.wtf(e: Throwable? = null, noinline messageBuilder: () -> String)
inline fun KSLog.wtf(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> String)
inline fun KSLog.wtf(message: String, e: Throwable? = null)
inline fun KSLog.wtf(    tag: String,     message: String,     e: Throwable? = null)
+
inline fun KSLog.wtf(e: Throwable? = null, noinline messageBuilder: () -> Any)
inline fun KSLog.wtf(    tag: String?,     e: Throwable? = null,     noinline messageBuilder: () -> Any)
inline fun KSLog.wtf(message: Any, e: Throwable? = null)
inline fun KSLog.wtf(    tag: String,     message: Any,     e: Throwable? = null)

Sources

-
+
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
- +
- +
Link copied to clipboard
diff --git a/kslog/package-list b/kslog/package-list index b8e978f..83f8dcc 100644 --- a/kslog/package-list +++ b/kslog/package-list @@ -1,122 +1,147 @@ $dokka.format:html-v1 $dokka.linkExtension:html +$dokka.location:dev.inmo.kslog.common.filter////PointingToDeclaration/kslog/dev.inmo.kslog.common.filter/index.html +$dokka.location:dev.inmo.kslog.common.filter//filtered/dev.inmo.kslog.common.KSLog#kotlin.Function3[dev.inmo.kslog.common.LogLevel,kotlin.String?,kotlin.Throwable?,kotlin.Boolean]/PointingToDeclaration/kslog/dev.inmo.kslog.common.filter/filtered.html +$dokka.location:dev.inmo.kslog.common.filter/FilterKSLog///PointingToDeclaration/kslog/dev.inmo.kslog.common.filter/-filter-k-s-log/index.html +$dokka.location:dev.inmo.kslog.common.filter/FilterKSLog/FilterKSLog/#dev.inmo.kslog.common.KSLog#kotlin.Function3[dev.inmo.kslog.common.LogLevel,kotlin.String?,kotlin.Throwable?,kotlin.Boolean]/PointingToDeclaration/kslog/dev.inmo.kslog.common.filter/-filter-k-s-log/-filter-k-s-log.html +$dokka.location:dev.inmo.kslog.common.filter/FilterKSLog/performLog/#dev.inmo.kslog.common.LogLevel#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common.filter/-filter-k-s-log/perform-log.html +$dokka.location:dev.inmo.kslog.common.filter/FilterKSLog/performLog/#dev.inmo.kslog.common.LogLevel#kotlin.String?#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common.filter/-filter-k-s-log/perform-log.html +$dokka.location:dev.inmo.kslog.common.filter/FilterKSLog/performLog/#dev.inmo.kslog.common.LogLevel#kotlin.String?#kotlin.Throwable?#kotlin.Function0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common.filter/-filter-k-s-log/perform-log.html +$dokka.location:dev.inmo.kslog.common.filter/FilterKSLog/performLogS/#dev.inmo.kslog.common.LogLevel#kotlin.String?#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common.filter/-filter-k-s-log/perform-log-s.html +$dokka.location:dev.inmo.kslog.common.typed////PointingToDeclaration/kslog/dev.inmo.kslog.common.typed/index.html +$dokka.location:dev.inmo.kslog.common.typed//buildTypedLogger/#kotlin.collections.Map[kotlin.reflect.KClass[*]?,dev.inmo.kslog.common.KSLog]#kotlin.Function1[dev.inmo.kslog.common.typed.TypedKSLogBuilder,kotlin.Unit]/PointingToDeclaration/kslog/dev.inmo.kslog.common.typed/build-typed-logger.html +$dokka.location:dev.inmo.kslog.common.typed/TypedKSLog///PointingToDeclaration/kslog/dev.inmo.kslog.common.typed/-typed-k-s-log/index.html +$dokka.location:dev.inmo.kslog.common.typed/TypedKSLog/TypedKSLog/#kotlin.collections.Map[kotlin.reflect.KClass[*]?,dev.inmo.kslog.common.KSLog]/PointingToDeclaration/kslog/dev.inmo.kslog.common.typed/-typed-k-s-log/-typed-k-s-log.html +$dokka.location:dev.inmo.kslog.common.typed/TypedKSLog/performLog/#dev.inmo.kslog.common.LogLevel#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common.typed/-typed-k-s-log/perform-log.html +$dokka.location:dev.inmo.kslog.common.typed/TypedKSLog/performLog/#dev.inmo.kslog.common.LogLevel#kotlin.String?#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common.typed/-typed-k-s-log/perform-log.html +$dokka.location:dev.inmo.kslog.common.typed/TypedKSLog/performLog/#dev.inmo.kslog.common.LogLevel#kotlin.String?#kotlin.Throwable?#kotlin.Function0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common.typed/-typed-k-s-log/perform-log.html +$dokka.location:dev.inmo.kslog.common.typed/TypedKSLog/performLogS/#dev.inmo.kslog.common.LogLevel#kotlin.String?#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common.typed/-typed-k-s-log/perform-log-s.html +$dokka.location:dev.inmo.kslog.common.typed/TypedKSLogBuilder///PointingToDeclaration/kslog/dev.inmo.kslog.common.typed/-typed-k-s-log-builder/index.html +$dokka.location:dev.inmo.kslog.common.typed/TypedKSLogBuilder/TypedKSLogBuilder/#kotlin.collections.Map[kotlin.reflect.KClass[*]?,dev.inmo.kslog.common.KSLog]/PointingToDeclaration/kslog/dev.inmo.kslog.common.typed/-typed-k-s-log-builder/-typed-k-s-log-builder.html +$dokka.location:dev.inmo.kslog.common.typed/TypedKSLogBuilder/build/#/PointingToDeclaration/kslog/dev.inmo.kslog.common.typed/-typed-k-s-log-builder/build.html +$dokka.location:dev.inmo.kslog.common.typed/TypedKSLogBuilder/default/#dev.inmo.kslog.common.KSLog/PointingToDeclaration/kslog/dev.inmo.kslog.common.typed/-typed-k-s-log-builder/default.html +$dokka.location:dev.inmo.kslog.common.typed/TypedKSLogBuilder/default/#kotlin.Function4[dev.inmo.kslog.common.LogLevel,kotlin.String?,kotlin.Any,kotlin.Throwable?,kotlin.Unit]/PointingToDeclaration/kslog/dev.inmo.kslog.common.typed/-typed-k-s-log-builder/default.html +$dokka.location:dev.inmo.kslog.common.typed/TypedKSLogBuilder/on/#dev.inmo.kslog.common.KSLog/PointingToDeclaration/kslog/dev.inmo.kslog.common.typed/-typed-k-s-log-builder/on.html +$dokka.location:dev.inmo.kslog.common.typed/TypedKSLogBuilder/on/#kotlin.Function4[dev.inmo.kslog.common.LogLevel,kotlin.String?,kotlin.Any,kotlin.Throwable?,kotlin.Unit]/PointingToDeclaration/kslog/dev.inmo.kslog.common.typed/-typed-k-s-log-builder/on.html +$dokka.location:dev.inmo.kslog.common.typed/TypedKSLogBuilder/on/#kotlin.reflect.KClass[*]?#dev.inmo.kslog.common.KSLog/PointingToDeclaration/kslog/dev.inmo.kslog.common.typed/-typed-k-s-log-builder/on.html +$dokka.location:dev.inmo.kslog.common.typed/TypedKSLogBuilder/on/#kotlin.reflect.KClass[*]?#kotlin.Function4[dev.inmo.kslog.common.LogLevel,kotlin.String?,kotlin.Any,kotlin.Throwable?,kotlin.Unit]/PointingToDeclaration/kslog/dev.inmo.kslog.common.typed/-typed-k-s-log-builder/on.html $dokka.location:dev.inmo.kslog.common////PointingToDeclaration/kslog/dev.inmo.kslog.common/index.html -$dokka.location:dev.inmo.kslog.common//KSLog/#kotlin.String#dev.inmo.kslog.common.LogLevel#dev.inmo.kslog.common.LogLevel#kotlin.Array[dev.inmo.kslog.common.LogLevel]#kotlin.Function4[dev.inmo.kslog.common.LogLevel,kotlin.String,kotlin.String,kotlin.Throwable?,kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/-k-s-log.html -$dokka.location:dev.inmo.kslog.common//KSLog/#kotlin.String#dev.inmo.kslog.common.LogLevel#kotlin.Function4[dev.inmo.kslog.common.LogLevel,kotlin.String,kotlin.String,kotlin.Throwable?,kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/-k-s-log.html -$dokka.location:dev.inmo.kslog.common//KSLog/#kotlin.String#java.util.logging.Logger#dev.inmo.kslog.common.LogLevel#dev.inmo.kslog.common.LogLevel#kotlin.Array[dev.inmo.kslog.common.LogLevel]#kotlin.Function4[dev.inmo.kslog.common.LogLevel,kotlin.String,kotlin.String,kotlin.Throwable?,kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/-k-s-log.html -$dokka.location:dev.inmo.kslog.common//KSLog/#kotlin.String#java.util.logging.Logger#dev.inmo.kslog.common.LogLevel#kotlin.Function4[dev.inmo.kslog.common.LogLevel,kotlin.String,kotlin.String,kotlin.Throwable?,kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/-k-s-log.html -$dokka.location:dev.inmo.kslog.common//KSLog/#kotlin.String#java.util.logging.Logger#kotlin.Function3[dev.inmo.kslog.common.LogLevel,kotlin.String?,kotlin.Throwable?,kotlin.Boolean]#kotlin.Function4[dev.inmo.kslog.common.LogLevel,kotlin.String,kotlin.String,kotlin.Throwable?,kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/-k-s-log.html -$dokka.location:dev.inmo.kslog.common//KSLog/#kotlin.String#java.util.logging.Logger#kotlin.collections.Iterable[dev.inmo.kslog.common.LogLevel]#kotlin.Function4[dev.inmo.kslog.common.LogLevel,kotlin.String,kotlin.String,kotlin.Throwable?,kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/-k-s-log.html -$dokka.location:dev.inmo.kslog.common//KSLog/#kotlin.String#kotlin.Function3[dev.inmo.kslog.common.LogLevel,kotlin.String?,kotlin.Throwable?,kotlin.Boolean]#kotlin.Function4[dev.inmo.kslog.common.LogLevel,kotlin.String,kotlin.String,kotlin.Throwable?,kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/-k-s-log.html -$dokka.location:dev.inmo.kslog.common//KSLog/#kotlin.String#kotlin.collections.Iterable[dev.inmo.kslog.common.LogLevel]#kotlin.Function4[dev.inmo.kslog.common.LogLevel,kotlin.String,kotlin.String,kotlin.Throwable?,kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/-k-s-log.html -$dokka.location:dev.inmo.kslog.common//assert/dev.inmo.kslog.common.KSLog#kotlin.String#kotlin.String#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/assert.html -$dokka.location:dev.inmo.kslog.common//assert/dev.inmo.kslog.common.KSLog#kotlin.String#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/assert.html -$dokka.location:dev.inmo.kslog.common//assert/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.Function0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/assert.html -$dokka.location:dev.inmo.kslog.common//assert/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.Function0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/assert.html -$dokka.location:dev.inmo.kslog.common//assertS/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/assert-s.html -$dokka.location:dev.inmo.kslog.common//assertS/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/assert-s.html -$dokka.location:dev.inmo.kslog.common//d/dev.inmo.kslog.common.KSLog#kotlin.String#kotlin.String#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/d.html -$dokka.location:dev.inmo.kslog.common//d/dev.inmo.kslog.common.KSLog#kotlin.String#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/d.html -$dokka.location:dev.inmo.kslog.common//d/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.Function0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/d.html -$dokka.location:dev.inmo.kslog.common//d/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.Function0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/d.html -$dokka.location:dev.inmo.kslog.common//dS/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/d-s.html -$dokka.location:dev.inmo.kslog.common//dS/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/d-s.html -$dokka.location:dev.inmo.kslog.common//debug/dev.inmo.kslog.common.KSLog#kotlin.String#kotlin.String#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/debug.html -$dokka.location:dev.inmo.kslog.common//debug/dev.inmo.kslog.common.KSLog#kotlin.String#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/debug.html -$dokka.location:dev.inmo.kslog.common//debug/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.Function0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/debug.html -$dokka.location:dev.inmo.kslog.common//debug/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.Function0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/debug.html -$dokka.location:dev.inmo.kslog.common//debugS/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/debug-s.html -$dokka.location:dev.inmo.kslog.common//debugS/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/debug-s.html +$dokka.location:dev.inmo.kslog.common//KSLog/#kotlin.String#dev.inmo.kslog.common.LogLevel#dev.inmo.kslog.common.LogLevel#kotlin.Array[dev.inmo.kslog.common.LogLevel]#kotlin.Function4[dev.inmo.kslog.common.LogLevel,kotlin.String,kotlin.Any,kotlin.Throwable?,kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/-k-s-log.html +$dokka.location:dev.inmo.kslog.common//KSLog/#kotlin.String#dev.inmo.kslog.common.LogLevel#kotlin.Function4[dev.inmo.kslog.common.LogLevel,kotlin.String,kotlin.Any,kotlin.Throwable?,kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/-k-s-log.html +$dokka.location:dev.inmo.kslog.common//KSLog/#kotlin.String#java.util.logging.Logger#dev.inmo.kslog.common.LogLevel#dev.inmo.kslog.common.LogLevel#kotlin.Array[dev.inmo.kslog.common.LogLevel]#kotlin.Function4[dev.inmo.kslog.common.LogLevel,kotlin.String,kotlin.Any,kotlin.Throwable?,kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/-k-s-log.html +$dokka.location:dev.inmo.kslog.common//KSLog/#kotlin.String#java.util.logging.Logger#dev.inmo.kslog.common.LogLevel#kotlin.Function4[dev.inmo.kslog.common.LogLevel,kotlin.String,kotlin.Any,kotlin.Throwable?,kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/-k-s-log.html +$dokka.location:dev.inmo.kslog.common//KSLog/#kotlin.String#java.util.logging.Logger#kotlin.Function4[dev.inmo.kslog.common.LogLevel,kotlin.String,kotlin.Any,kotlin.Throwable?,kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/-k-s-log.html +$dokka.location:dev.inmo.kslog.common//KSLog/#kotlin.String#java.util.logging.Logger#kotlin.collections.Iterable[dev.inmo.kslog.common.LogLevel]#kotlin.Function4[dev.inmo.kslog.common.LogLevel,kotlin.String,kotlin.Any,kotlin.Throwable?,kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/-k-s-log.html +$dokka.location:dev.inmo.kslog.common//KSLog/#kotlin.String#kotlin.Function4[dev.inmo.kslog.common.LogLevel,kotlin.String,kotlin.Any,kotlin.Throwable?,kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/-k-s-log.html +$dokka.location:dev.inmo.kslog.common//KSLog/#kotlin.String#kotlin.collections.Iterable[dev.inmo.kslog.common.LogLevel]#kotlin.Function4[dev.inmo.kslog.common.LogLevel,kotlin.String,kotlin.Any,kotlin.Throwable?,kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/-k-s-log.html +$dokka.location:dev.inmo.kslog.common//assert/dev.inmo.kslog.common.KSLog#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/assert.html +$dokka.location:dev.inmo.kslog.common//assert/dev.inmo.kslog.common.KSLog#kotlin.String#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/assert.html +$dokka.location:dev.inmo.kslog.common//assert/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.Function0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/assert.html +$dokka.location:dev.inmo.kslog.common//assert/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.Function0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/assert.html +$dokka.location:dev.inmo.kslog.common//assertS/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/assert-s.html +$dokka.location:dev.inmo.kslog.common//assertS/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/assert-s.html +$dokka.location:dev.inmo.kslog.common//d/dev.inmo.kslog.common.KSLog#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/d.html +$dokka.location:dev.inmo.kslog.common//d/dev.inmo.kslog.common.KSLog#kotlin.String#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/d.html +$dokka.location:dev.inmo.kslog.common//d/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.Function0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/d.html +$dokka.location:dev.inmo.kslog.common//d/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.Function0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/d.html +$dokka.location:dev.inmo.kslog.common//dS/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/d-s.html +$dokka.location:dev.inmo.kslog.common//dS/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/d-s.html +$dokka.location:dev.inmo.kslog.common//debug/dev.inmo.kslog.common.KSLog#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/debug.html +$dokka.location:dev.inmo.kslog.common//debug/dev.inmo.kslog.common.KSLog#kotlin.String#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/debug.html +$dokka.location:dev.inmo.kslog.common//debug/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.Function0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/debug.html +$dokka.location:dev.inmo.kslog.common//debug/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.Function0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/debug.html +$dokka.location:dev.inmo.kslog.common//debugS/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/debug-s.html +$dokka.location:dev.inmo.kslog.common//debugS/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/debug-s.html $dokka.location:dev.inmo.kslog.common//defaultMessageFormatter/#/PointingToDeclaration/kslog/dev.inmo.kslog.common/default-message-formatter.html -$dokka.location:dev.inmo.kslog.common//e/dev.inmo.kslog.common.KSLog#kotlin.String#kotlin.String#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/e.html -$dokka.location:dev.inmo.kslog.common//e/dev.inmo.kslog.common.KSLog#kotlin.String#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/e.html -$dokka.location:dev.inmo.kslog.common//e/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.Function0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/e.html -$dokka.location:dev.inmo.kslog.common//e/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.Function0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/e.html -$dokka.location:dev.inmo.kslog.common//eS/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/e-s.html -$dokka.location:dev.inmo.kslog.common//eS/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/e-s.html -$dokka.location:dev.inmo.kslog.common//error/dev.inmo.kslog.common.KSLog#kotlin.String#kotlin.String#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/error.html -$dokka.location:dev.inmo.kslog.common//error/dev.inmo.kslog.common.KSLog#kotlin.String#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/error.html -$dokka.location:dev.inmo.kslog.common//error/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.Function0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/error.html -$dokka.location:dev.inmo.kslog.common//error/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.Function0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/error.html -$dokka.location:dev.inmo.kslog.common//errorS/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/error-s.html -$dokka.location:dev.inmo.kslog.common//errorS/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/error-s.html -$dokka.location:dev.inmo.kslog.common//i/dev.inmo.kslog.common.KSLog#kotlin.String#kotlin.String#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/i.html -$dokka.location:dev.inmo.kslog.common//i/dev.inmo.kslog.common.KSLog#kotlin.String#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/i.html -$dokka.location:dev.inmo.kslog.common//i/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.Function0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/i.html -$dokka.location:dev.inmo.kslog.common//i/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.Function0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/i.html -$dokka.location:dev.inmo.kslog.common//iS/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/i-s.html -$dokka.location:dev.inmo.kslog.common//iS/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/i-s.html -$dokka.location:dev.inmo.kslog.common//info/dev.inmo.kslog.common.KSLog#kotlin.String#kotlin.String#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/info.html -$dokka.location:dev.inmo.kslog.common//info/dev.inmo.kslog.common.KSLog#kotlin.String#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/info.html -$dokka.location:dev.inmo.kslog.common//info/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.Function0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/info.html -$dokka.location:dev.inmo.kslog.common//info/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.Function0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/info.html -$dokka.location:dev.inmo.kslog.common//infoS/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/info-s.html -$dokka.location:dev.inmo.kslog.common//infoS/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/info-s.html -$dokka.location:dev.inmo.kslog.common//invoke/dev.inmo.kslog.common.KSLog#kotlin.Function4[dev.inmo.kslog.common.LogLevel,kotlin.String?,kotlin.String,kotlin.Throwable?,kotlin.Unit]/PointingToDeclaration/kslog/dev.inmo.kslog.common/invoke.html -$dokka.location:dev.inmo.kslog.common//l/dev.inmo.kslog.common.KSLog#dev.inmo.kslog.common.LogLevel#kotlin.String#kotlin.String#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/l.html -$dokka.location:dev.inmo.kslog.common//l/dev.inmo.kslog.common.KSLog#dev.inmo.kslog.common.LogLevel#kotlin.String#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/l.html -$dokka.location:dev.inmo.kslog.common//l/dev.inmo.kslog.common.KSLog#dev.inmo.kslog.common.LogLevel#kotlin.String?#kotlin.Throwable?#kotlin.Function0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/l.html -$dokka.location:dev.inmo.kslog.common//l/dev.inmo.kslog.common.KSLog#dev.inmo.kslog.common.LogLevel#kotlin.Throwable?#kotlin.Function0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/l.html -$dokka.location:dev.inmo.kslog.common//lS/dev.inmo.kslog.common.KSLog#dev.inmo.kslog.common.LogLevel#kotlin.String?#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/l-s.html -$dokka.location:dev.inmo.kslog.common//lS/dev.inmo.kslog.common.KSLog#dev.inmo.kslog.common.LogLevel#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/l-s.html -$dokka.location:dev.inmo.kslog.common//log/dev.inmo.kslog.common.KSLog#dev.inmo.kslog.common.LogLevel#kotlin.String#kotlin.String#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/log.html -$dokka.location:dev.inmo.kslog.common//log/dev.inmo.kslog.common.KSLog#dev.inmo.kslog.common.LogLevel#kotlin.String#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/log.html -$dokka.location:dev.inmo.kslog.common//log/dev.inmo.kslog.common.KSLog#dev.inmo.kslog.common.LogLevel#kotlin.String?#kotlin.Throwable?#kotlin.Function0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/log.html -$dokka.location:dev.inmo.kslog.common//log/dev.inmo.kslog.common.KSLog#dev.inmo.kslog.common.LogLevel#kotlin.Throwable?#kotlin.Function0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/log.html -$dokka.location:dev.inmo.kslog.common//logS/dev.inmo.kslog.common.KSLog#dev.inmo.kslog.common.LogLevel#kotlin.String?#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/log-s.html -$dokka.location:dev.inmo.kslog.common//logS/dev.inmo.kslog.common.KSLog#dev.inmo.kslog.common.LogLevel#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/log-s.html +$dokka.location:dev.inmo.kslog.common//e/dev.inmo.kslog.common.KSLog#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/e.html +$dokka.location:dev.inmo.kslog.common//e/dev.inmo.kslog.common.KSLog#kotlin.String#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/e.html +$dokka.location:dev.inmo.kslog.common//e/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.Function0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/e.html +$dokka.location:dev.inmo.kslog.common//e/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.Function0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/e.html +$dokka.location:dev.inmo.kslog.common//eS/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/e-s.html +$dokka.location:dev.inmo.kslog.common//eS/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/e-s.html +$dokka.location:dev.inmo.kslog.common//error/dev.inmo.kslog.common.KSLog#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/error.html +$dokka.location:dev.inmo.kslog.common//error/dev.inmo.kslog.common.KSLog#kotlin.String#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/error.html +$dokka.location:dev.inmo.kslog.common//error/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.Function0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/error.html +$dokka.location:dev.inmo.kslog.common//error/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.Function0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/error.html +$dokka.location:dev.inmo.kslog.common//errorS/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/error-s.html +$dokka.location:dev.inmo.kslog.common//errorS/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/error-s.html +$dokka.location:dev.inmo.kslog.common//i/dev.inmo.kslog.common.KSLog#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/i.html +$dokka.location:dev.inmo.kslog.common//i/dev.inmo.kslog.common.KSLog#kotlin.String#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/i.html +$dokka.location:dev.inmo.kslog.common//i/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.Function0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/i.html +$dokka.location:dev.inmo.kslog.common//i/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.Function0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/i.html +$dokka.location:dev.inmo.kslog.common//iS/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/i-s.html +$dokka.location:dev.inmo.kslog.common//iS/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/i-s.html +$dokka.location:dev.inmo.kslog.common//info/dev.inmo.kslog.common.KSLog#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/info.html +$dokka.location:dev.inmo.kslog.common//info/dev.inmo.kslog.common.KSLog#kotlin.String#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/info.html +$dokka.location:dev.inmo.kslog.common//info/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.Function0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/info.html +$dokka.location:dev.inmo.kslog.common//info/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.Function0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/info.html +$dokka.location:dev.inmo.kslog.common//infoS/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/info-s.html +$dokka.location:dev.inmo.kslog.common//infoS/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/info-s.html +$dokka.location:dev.inmo.kslog.common//invoke/dev.inmo.kslog.common.KSLog#kotlin.Function4[dev.inmo.kslog.common.LogLevel,kotlin.String?,kotlin.Any,kotlin.Throwable?,kotlin.Unit]/PointingToDeclaration/kslog/dev.inmo.kslog.common/invoke.html +$dokka.location:dev.inmo.kslog.common//l/dev.inmo.kslog.common.KSLog#dev.inmo.kslog.common.LogLevel#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/l.html +$dokka.location:dev.inmo.kslog.common//l/dev.inmo.kslog.common.KSLog#dev.inmo.kslog.common.LogLevel#kotlin.String#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/l.html +$dokka.location:dev.inmo.kslog.common//l/dev.inmo.kslog.common.KSLog#dev.inmo.kslog.common.LogLevel#kotlin.String?#kotlin.Throwable?#kotlin.Function0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/l.html +$dokka.location:dev.inmo.kslog.common//l/dev.inmo.kslog.common.KSLog#dev.inmo.kslog.common.LogLevel#kotlin.Throwable?#kotlin.Function0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/l.html +$dokka.location:dev.inmo.kslog.common//lS/dev.inmo.kslog.common.KSLog#dev.inmo.kslog.common.LogLevel#kotlin.String?#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/l-s.html +$dokka.location:dev.inmo.kslog.common//lS/dev.inmo.kslog.common.KSLog#dev.inmo.kslog.common.LogLevel#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/l-s.html +$dokka.location:dev.inmo.kslog.common//log/dev.inmo.kslog.common.KSLog#dev.inmo.kslog.common.LogLevel#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/log.html +$dokka.location:dev.inmo.kslog.common//log/dev.inmo.kslog.common.KSLog#dev.inmo.kslog.common.LogLevel#kotlin.String#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/log.html +$dokka.location:dev.inmo.kslog.common//log/dev.inmo.kslog.common.KSLog#dev.inmo.kslog.common.LogLevel#kotlin.String?#kotlin.Throwable?#kotlin.Function0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/log.html +$dokka.location:dev.inmo.kslog.common//log/dev.inmo.kslog.common.KSLog#dev.inmo.kslog.common.LogLevel#kotlin.Throwable?#kotlin.Function0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/log.html +$dokka.location:dev.inmo.kslog.common//logS/dev.inmo.kslog.common.KSLog#dev.inmo.kslog.common.LogLevel#kotlin.String?#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/log-s.html +$dokka.location:dev.inmo.kslog.common//logS/dev.inmo.kslog.common.KSLog#dev.inmo.kslog.common.LogLevel#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/log-s.html $dokka.location:dev.inmo.kslog.common//logTag/kotlin.Any#/PointingToDeclaration/kslog/dev.inmo.kslog.common/log-tag.html $dokka.location:dev.inmo.kslog.common//logger/kotlin.Any#/PointingToDeclaration/kslog/dev.inmo.kslog.common/logger.html -$dokka.location:dev.inmo.kslog.common//v/dev.inmo.kslog.common.KSLog#kotlin.String#kotlin.String#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/v.html -$dokka.location:dev.inmo.kslog.common//v/dev.inmo.kslog.common.KSLog#kotlin.String#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/v.html -$dokka.location:dev.inmo.kslog.common//v/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.Function0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/v.html -$dokka.location:dev.inmo.kslog.common//v/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.Function0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/v.html -$dokka.location:dev.inmo.kslog.common//vS/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/v-s.html -$dokka.location:dev.inmo.kslog.common//vS/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/v-s.html -$dokka.location:dev.inmo.kslog.common//verbose/dev.inmo.kslog.common.KSLog#kotlin.String#kotlin.String#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/verbose.html -$dokka.location:dev.inmo.kslog.common//verbose/dev.inmo.kslog.common.KSLog#kotlin.String#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/verbose.html -$dokka.location:dev.inmo.kslog.common//verbose/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.Function0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/verbose.html -$dokka.location:dev.inmo.kslog.common//verbose/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.Function0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/verbose.html -$dokka.location:dev.inmo.kslog.common//verboseS/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/verbose-s.html -$dokka.location:dev.inmo.kslog.common//verboseS/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/verbose-s.html -$dokka.location:dev.inmo.kslog.common//w/dev.inmo.kslog.common.KSLog#kotlin.String#kotlin.String#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/w.html -$dokka.location:dev.inmo.kslog.common//w/dev.inmo.kslog.common.KSLog#kotlin.String#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/w.html -$dokka.location:dev.inmo.kslog.common//w/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.Function0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/w.html -$dokka.location:dev.inmo.kslog.common//w/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.Function0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/w.html -$dokka.location:dev.inmo.kslog.common//wS/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/w-s.html -$dokka.location:dev.inmo.kslog.common//wS/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/w-s.html -$dokka.location:dev.inmo.kslog.common//warning/dev.inmo.kslog.common.KSLog#kotlin.String#kotlin.String#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/warning.html -$dokka.location:dev.inmo.kslog.common//warning/dev.inmo.kslog.common.KSLog#kotlin.String#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/warning.html -$dokka.location:dev.inmo.kslog.common//warning/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.Function0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/warning.html -$dokka.location:dev.inmo.kslog.common//warning/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.Function0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/warning.html -$dokka.location:dev.inmo.kslog.common//warningS/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/warning-s.html -$dokka.location:dev.inmo.kslog.common//warningS/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/warning-s.html -$dokka.location:dev.inmo.kslog.common//wtf/dev.inmo.kslog.common.KSLog#kotlin.String#kotlin.String#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/wtf.html -$dokka.location:dev.inmo.kslog.common//wtf/dev.inmo.kslog.common.KSLog#kotlin.String#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/wtf.html -$dokka.location:dev.inmo.kslog.common//wtf/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.Function0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/wtf.html -$dokka.location:dev.inmo.kslog.common//wtf/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.Function0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/wtf.html -$dokka.location:dev.inmo.kslog.common//wtfS/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/wtf-s.html -$dokka.location:dev.inmo.kslog.common//wtfS/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/wtf-s.html +$dokka.location:dev.inmo.kslog.common//taggedLogger/#kotlin.Any/PointingToDeclaration/kslog/dev.inmo.kslog.common/tagged-logger.html +$dokka.location:dev.inmo.kslog.common//v/dev.inmo.kslog.common.KSLog#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/v.html +$dokka.location:dev.inmo.kslog.common//v/dev.inmo.kslog.common.KSLog#kotlin.String#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/v.html +$dokka.location:dev.inmo.kslog.common//v/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.Function0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/v.html +$dokka.location:dev.inmo.kslog.common//v/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.Function0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/v.html +$dokka.location:dev.inmo.kslog.common//vS/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/v-s.html +$dokka.location:dev.inmo.kslog.common//vS/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/v-s.html +$dokka.location:dev.inmo.kslog.common//verbose/dev.inmo.kslog.common.KSLog#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/verbose.html +$dokka.location:dev.inmo.kslog.common//verbose/dev.inmo.kslog.common.KSLog#kotlin.String#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/verbose.html +$dokka.location:dev.inmo.kslog.common//verbose/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.Function0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/verbose.html +$dokka.location:dev.inmo.kslog.common//verbose/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.Function0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/verbose.html +$dokka.location:dev.inmo.kslog.common//verboseS/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/verbose-s.html +$dokka.location:dev.inmo.kslog.common//verboseS/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/verbose-s.html +$dokka.location:dev.inmo.kslog.common//w/dev.inmo.kslog.common.KSLog#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/w.html +$dokka.location:dev.inmo.kslog.common//w/dev.inmo.kslog.common.KSLog#kotlin.String#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/w.html +$dokka.location:dev.inmo.kslog.common//w/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.Function0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/w.html +$dokka.location:dev.inmo.kslog.common//w/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.Function0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/w.html +$dokka.location:dev.inmo.kslog.common//wS/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/w-s.html +$dokka.location:dev.inmo.kslog.common//wS/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/w-s.html +$dokka.location:dev.inmo.kslog.common//warning/dev.inmo.kslog.common.KSLog#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/warning.html +$dokka.location:dev.inmo.kslog.common//warning/dev.inmo.kslog.common.KSLog#kotlin.String#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/warning.html +$dokka.location:dev.inmo.kslog.common//warning/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.Function0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/warning.html +$dokka.location:dev.inmo.kslog.common//warning/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.Function0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/warning.html +$dokka.location:dev.inmo.kslog.common//warningS/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/warning-s.html +$dokka.location:dev.inmo.kslog.common//warningS/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/warning-s.html +$dokka.location:dev.inmo.kslog.common//wtf/dev.inmo.kslog.common.KSLog#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/wtf.html +$dokka.location:dev.inmo.kslog.common//wtf/dev.inmo.kslog.common.KSLog#kotlin.String#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/wtf.html +$dokka.location:dev.inmo.kslog.common//wtf/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.Function0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/wtf.html +$dokka.location:dev.inmo.kslog.common//wtf/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.Function0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/wtf.html +$dokka.location:dev.inmo.kslog.common//wtfS/dev.inmo.kslog.common.KSLog#kotlin.String?#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/wtf-s.html +$dokka.location:dev.inmo.kslog.common//wtfS/dev.inmo.kslog.common.KSLog#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/wtf-s.html $dokka.location:dev.inmo.kslog.common/CallbackKSLog///PointingToDeclaration/kslog/dev.inmo.kslog.common/-callback-k-s-log/index.html -$dokka.location:dev.inmo.kslog.common/CallbackKSLog/CallbackKSLog/#kotlin.Function4[dev.inmo.kslog.common.LogLevel,kotlin.String?,kotlin.String,kotlin.Throwable?,kotlin.Unit]/PointingToDeclaration/kslog/dev.inmo.kslog.common/-callback-k-s-log/-callback-k-s-log.html -$dokka.location:dev.inmo.kslog.common/CallbackKSLog/performLog/#dev.inmo.kslog.common.LogLevel#kotlin.String?#kotlin.String#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/-callback-k-s-log/perform-log.html +$dokka.location:dev.inmo.kslog.common/CallbackKSLog/CallbackKSLog/#kotlin.Function4[dev.inmo.kslog.common.LogLevel,kotlin.String?,kotlin.Any,kotlin.Throwable?,kotlin.Unit]/PointingToDeclaration/kslog/dev.inmo.kslog.common/-callback-k-s-log/-callback-k-s-log.html +$dokka.location:dev.inmo.kslog.common/CallbackKSLog/performLog/#dev.inmo.kslog.common.LogLevel#kotlin.String?#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/-callback-k-s-log/perform-log.html $dokka.location:dev.inmo.kslog.common/DefaultKSLog///PointingToDeclaration/kslog/dev.inmo.kslog.common/-default-k-s-log/index.html -$dokka.location:dev.inmo.kslog.common/DefaultKSLog/DefaultKSLog/#kotlin.String#kotlin.Function3[dev.inmo.kslog.common.LogLevel,kotlin.String?,kotlin.Throwable?,kotlin.Boolean]#kotlin.Function4[dev.inmo.kslog.common.LogLevel,kotlin.String,kotlin.String,kotlin.Throwable?,kotlin.String]#kotlin.Function4[dev.inmo.kslog.common.LogLevel,kotlin.String,kotlin.String,kotlin.Throwable?,kotlin.Unit]/PointingToDeclaration/kslog/dev.inmo.kslog.common/-default-k-s-log/-default-k-s-log.html -$dokka.location:dev.inmo.kslog.common/DefaultKSLog/filter/#/PointingToDeclaration/kslog/dev.inmo.kslog.common/-default-k-s-log/filter.html -$dokka.location:dev.inmo.kslog.common/DefaultKSLog/performLog/#dev.inmo.kslog.common.LogLevel#kotlin.String?#kotlin.String#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/-default-k-s-log/perform-log.html -$dokka.location:dev.inmo.kslog.common/DefaultKSLog/performLog/#dev.inmo.kslog.common.LogLevel#kotlin.String?#kotlin.Throwable?#kotlin.Function0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/-default-k-s-log/perform-log.html -$dokka.location:dev.inmo.kslog.common/DefaultKSLog/performLogS/#dev.inmo.kslog.common.LogLevel#kotlin.String?#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/-default-k-s-log/perform-log-s.html +$dokka.location:dev.inmo.kslog.common/DefaultKSLog/DefaultKSLog/#kotlin.String#kotlin.Function4[dev.inmo.kslog.common.LogLevel,kotlin.String,kotlin.Any,kotlin.Throwable?,kotlin.String]#kotlin.Function4[dev.inmo.kslog.common.LogLevel,kotlin.String,kotlin.Any,kotlin.Throwable?,kotlin.Unit]/PointingToDeclaration/kslog/dev.inmo.kslog.common/-default-k-s-log/-default-k-s-log.html +$dokka.location:dev.inmo.kslog.common/DefaultKSLog/performLog/#dev.inmo.kslog.common.LogLevel#kotlin.String?#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/-default-k-s-log/perform-log.html +$dokka.location:dev.inmo.kslog.common/DefaultKSLog/performLog/#dev.inmo.kslog.common.LogLevel#kotlin.String?#kotlin.Throwable?#kotlin.Function0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/-default-k-s-log/perform-log.html +$dokka.location:dev.inmo.kslog.common/DefaultKSLog/performLogS/#dev.inmo.kslog.common.LogLevel#kotlin.String?#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/-default-k-s-log/perform-log-s.html $dokka.location:dev.inmo.kslog.common/KSLog.Companion///PointingToDeclaration/kslog/dev.inmo.kslog.common/-k-s-log/-companion/index.html $dokka.location:dev.inmo.kslog.common/KSLog.Companion/default/#/PointingToDeclaration/kslog/dev.inmo.kslog.common/-k-s-log/-companion/default.html -$dokka.location:dev.inmo.kslog.common/KSLog.Companion/performLog/#dev.inmo.kslog.common.LogLevel#kotlin.String#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/-k-s-log/-companion/perform-log.html -$dokka.location:dev.inmo.kslog.common/KSLog.Companion/performLog/#dev.inmo.kslog.common.LogLevel#kotlin.String?#kotlin.String#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/-k-s-log/-companion/perform-log.html -$dokka.location:dev.inmo.kslog.common/KSLog.Companion/performLog/#dev.inmo.kslog.common.LogLevel#kotlin.String?#kotlin.Throwable?#kotlin.Function0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/-k-s-log/-companion/perform-log.html -$dokka.location:dev.inmo.kslog.common/KSLog.Companion/performLogS/#dev.inmo.kslog.common.LogLevel#kotlin.String?#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/-k-s-log/-companion/perform-log-s.html +$dokka.location:dev.inmo.kslog.common/KSLog.Companion/performLog/#dev.inmo.kslog.common.LogLevel#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/-k-s-log/-companion/perform-log.html +$dokka.location:dev.inmo.kslog.common/KSLog.Companion/performLog/#dev.inmo.kslog.common.LogLevel#kotlin.String?#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/-k-s-log/-companion/perform-log.html +$dokka.location:dev.inmo.kslog.common/KSLog.Companion/performLog/#dev.inmo.kslog.common.LogLevel#kotlin.String?#kotlin.Throwable?#kotlin.Function0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/-k-s-log/-companion/perform-log.html +$dokka.location:dev.inmo.kslog.common/KSLog.Companion/performLogS/#dev.inmo.kslog.common.LogLevel#kotlin.String?#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/-k-s-log/-companion/perform-log-s.html $dokka.location:dev.inmo.kslog.common/KSLog///PointingToDeclaration/kslog/dev.inmo.kslog.common/-k-s-log/index.html -$dokka.location:dev.inmo.kslog.common/KSLog/performLog/#dev.inmo.kslog.common.LogLevel#kotlin.String#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/-k-s-log/perform-log.html -$dokka.location:dev.inmo.kslog.common/KSLog/performLog/#dev.inmo.kslog.common.LogLevel#kotlin.String?#kotlin.String#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/-k-s-log/perform-log.html -$dokka.location:dev.inmo.kslog.common/KSLog/performLog/#dev.inmo.kslog.common.LogLevel#kotlin.String?#kotlin.Throwable?#kotlin.Function0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/-k-s-log/perform-log.html -$dokka.location:dev.inmo.kslog.common/KSLog/performLogS/#dev.inmo.kslog.common.LogLevel#kotlin.String?#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.String]/PointingToDeclaration/kslog/dev.inmo.kslog.common/-k-s-log/perform-log-s.html +$dokka.location:dev.inmo.kslog.common/KSLog/performLog/#dev.inmo.kslog.common.LogLevel#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/-k-s-log/perform-log.html +$dokka.location:dev.inmo.kslog.common/KSLog/performLog/#dev.inmo.kslog.common.LogLevel#kotlin.String?#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/-k-s-log/perform-log.html +$dokka.location:dev.inmo.kslog.common/KSLog/performLog/#dev.inmo.kslog.common.LogLevel#kotlin.String?#kotlin.Throwable?#kotlin.Function0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/-k-s-log/perform-log.html +$dokka.location:dev.inmo.kslog.common/KSLog/performLogS/#dev.inmo.kslog.common.LogLevel#kotlin.String?#kotlin.Throwable?#kotlin.coroutines.SuspendFunction0[kotlin.Any]/PointingToDeclaration/kslog/dev.inmo.kslog.common/-k-s-log/perform-log-s.html $dokka.location:dev.inmo.kslog.common/LogLevel.ASSERT///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}kslog/dev.inmo.kslog.common/-log-level/-a-s-s-e-r-t/index.html $dokka.location:dev.inmo.kslog.common/LogLevel.DEBUG///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}kslog/dev.inmo.kslog.common/-log-level/-d-e-b-u-g/index.html $dokka.location:dev.inmo.kslog.common/LogLevel.ERROR///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}kslog/dev.inmo.kslog.common/-log-level/-e-r-r-o-r/index.html @@ -126,7 +151,9 @@ $dokka.location:dev.inmo.kslog.common/LogLevel.WARNING///PointingToDeclaration/{ $dokka.location:dev.inmo.kslog.common/LogLevel///PointingToDeclaration/kslog/dev.inmo.kslog.common/-log-level/index.html $dokka.location:dev.inmo.kslog.common/TagLogger///PointingToDeclaration/kslog/dev.inmo.kslog.common/-tag-logger/index.html $dokka.location:dev.inmo.kslog.common/TagLogger/TagLogger/#kotlin.String/PointingToDeclaration/kslog/dev.inmo.kslog.common/-tag-logger/-tag-logger.html -$dokka.location:dev.inmo.kslog.common/TagLogger/performLog/#dev.inmo.kslog.common.LogLevel#kotlin.String?#kotlin.String#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/-tag-logger/perform-log.html +$dokka.location:dev.inmo.kslog.common/TagLogger/performLog/#dev.inmo.kslog.common.LogLevel#kotlin.String?#kotlin.Any#kotlin.Throwable?/PointingToDeclaration/kslog/dev.inmo.kslog.common/-tag-logger/perform-log.html $dokka.location:dev.inmo.kslog.common/TagLogger/tag/#/PointingToDeclaration/kslog/dev.inmo.kslog.common/-tag-logger/tag.html dev.inmo.kslog.common +dev.inmo.kslog.common.filter +dev.inmo.kslog.common.typed diff --git a/navigation.html b/navigation.html index 9b70886..b819d26 100644 --- a/navigation.html +++ b/navigation.html @@ -2,22 +2,22 @@
-
+ -
+ -
+
-
+ -
+
@@ -26,46 +26,46 @@ -
+ -
+
-
+ -
+ -
+ -
+
-
+ -
+ -
+ -
+ -
+ -
+
-
+
@@ -92,48 +92,72 @@
-
+ -
+ -
+ + -
+
-
+ -
+ -
+ -
+
-
+ -
+ -
+ - diff --git a/scripts/pages.json b/scripts/pages.json index 5d658e0..7f3e42b 100644 --- a/scripts/pages.json +++ b/scripts/pages.json @@ -1 +1 @@ -[{"name":"ASSERT()","description":"dev.inmo.kslog.common.LogLevel.ASSERT","location":"kslog/dev.inmo.kslog.common/-log-level/-a-s-s-e-r-t/index.html","searchKeys":["ASSERT","ASSERT()","dev.inmo.kslog.common.LogLevel.ASSERT"]},{"name":"DEBUG()","description":"dev.inmo.kslog.common.LogLevel.DEBUG","location":"kslog/dev.inmo.kslog.common/-log-level/-d-e-b-u-g/index.html","searchKeys":["DEBUG","DEBUG()","dev.inmo.kslog.common.LogLevel.DEBUG"]},{"name":"ERROR()","description":"dev.inmo.kslog.common.LogLevel.ERROR","location":"kslog/dev.inmo.kslog.common/-log-level/-e-r-r-o-r/index.html","searchKeys":["ERROR","ERROR()","dev.inmo.kslog.common.LogLevel.ERROR"]},{"name":"INFO()","description":"dev.inmo.kslog.common.LogLevel.INFO","location":"kslog/dev.inmo.kslog.common/-log-level/-i-n-f-o/index.html","searchKeys":["INFO","INFO()","dev.inmo.kslog.common.LogLevel.INFO"]},{"name":"VERBOSE()","description":"dev.inmo.kslog.common.LogLevel.VERBOSE","location":"kslog/dev.inmo.kslog.common/-log-level/-v-e-r-b-o-s-e/index.html","searchKeys":["VERBOSE","VERBOSE()","dev.inmo.kslog.common.LogLevel.VERBOSE"]},{"name":"WARNING()","description":"dev.inmo.kslog.common.LogLevel.WARNING","location":"kslog/dev.inmo.kslog.common/-log-level/-w-a-r-n-i-n-g/index.html","searchKeys":["WARNING","WARNING()","dev.inmo.kslog.common.LogLevel.WARNING"]},{"name":"abstract fun performLog(level: LogLevel, tag: String?, message: String, throwable: Throwable?)","description":"dev.inmo.kslog.common.KSLog.performLog","location":"kslog/dev.inmo.kslog.common/-k-s-log/perform-log.html","searchKeys":["performLog","abstract fun performLog(level: LogLevel, tag: String?, message: String, throwable: Throwable?)","dev.inmo.kslog.common.KSLog.performLog"]},{"name":"class CallbackKSLog(performLogCallback: (level: LogLevel, tag: String?, message: String, throwable: Throwable?) -> Unit) : KSLog","description":"dev.inmo.kslog.common.CallbackKSLog","location":"kslog/dev.inmo.kslog.common/-callback-k-s-log/index.html","searchKeys":["CallbackKSLog","class CallbackKSLog(performLogCallback: (level: LogLevel, tag: String?, message: String, throwable: Throwable?) -> Unit) : KSLog","dev.inmo.kslog.common.CallbackKSLog"]},{"name":"class DefaultKSLog(defaultTag: String, val filter: MessageFilter = { _, _, _ -> true }, messageFormatter: MessageFormatter = defaultMessageFormatter, logging: (level: LogLevel, tag: String, message: String, throwable: Throwable?) -> Unit = defaultLogging) : KSLog","description":"dev.inmo.kslog.common.DefaultKSLog","location":"kslog/dev.inmo.kslog.common/-default-k-s-log/index.html","searchKeys":["DefaultKSLog","class DefaultKSLog(defaultTag: String, val filter: MessageFilter = { _, _, _ -> true }, messageFormatter: MessageFormatter = defaultMessageFormatter, logging: (level: LogLevel, tag: String, message: String, throwable: Throwable?) -> Unit = defaultLogging) : KSLog","dev.inmo.kslog.common.DefaultKSLog"]},{"name":"enum LogLevel : Enum ","description":"dev.inmo.kslog.common.LogLevel","location":"kslog/dev.inmo.kslog.common/-log-level/index.html","searchKeys":["LogLevel","enum LogLevel : Enum ","dev.inmo.kslog.common.LogLevel"]},{"name":"fun CallbackKSLog(performLogCallback: (level: LogLevel, tag: String?, message: String, throwable: Throwable?) -> Unit)","description":"dev.inmo.kslog.common.CallbackKSLog.CallbackKSLog","location":"kslog/dev.inmo.kslog.common/-callback-k-s-log/-callback-k-s-log.html","searchKeys":["CallbackKSLog","fun CallbackKSLog(performLogCallback: (level: LogLevel, tag: String?, message: String, throwable: Throwable?) -> Unit)","dev.inmo.kslog.common.CallbackKSLog.CallbackKSLog"]},{"name":"fun DefaultKSLog(defaultTag: String, filter: MessageFilter = { _, _, _ -> true }, messageFormatter: MessageFormatter = defaultMessageFormatter, logging: (level: LogLevel, tag: String, message: String, throwable: Throwable?) -> Unit = defaultLogging)","description":"dev.inmo.kslog.common.DefaultKSLog.DefaultKSLog","location":"kslog/dev.inmo.kslog.common/-default-k-s-log/-default-k-s-log.html","searchKeys":["DefaultKSLog","fun DefaultKSLog(defaultTag: String, filter: MessageFilter = { _, _, _ -> true }, messageFormatter: MessageFormatter = defaultMessageFormatter, logging: (level: LogLevel, tag: String, message: String, throwable: Throwable?) -> Unit = defaultLogging)","dev.inmo.kslog.common.DefaultKSLog.DefaultKSLog"]},{"name":"fun KSLog(defaultTag: String, filter: MessageFilter = { _, _, _ -> true }, messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog","description":"dev.inmo.kslog.common.KSLog","location":"kslog/dev.inmo.kslog.common/-k-s-log.html","searchKeys":["KSLog","fun KSLog(defaultTag: String, filter: MessageFilter = { _, _, _ -> true }, messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog","dev.inmo.kslog.common.KSLog"]},{"name":"fun KSLog(defaultTag: String, firstLevel: LogLevel, secondLevel: LogLevel, vararg otherLevels: LogLevel, messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog","description":"dev.inmo.kslog.common.KSLog","location":"kslog/dev.inmo.kslog.common/-k-s-log.html","searchKeys":["KSLog","fun KSLog(defaultTag: String, firstLevel: LogLevel, secondLevel: LogLevel, vararg otherLevels: LogLevel, messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog","dev.inmo.kslog.common.KSLog"]},{"name":"fun KSLog(defaultTag: String, levels: Iterable, messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog","description":"dev.inmo.kslog.common.KSLog","location":"kslog/dev.inmo.kslog.common/-k-s-log.html","searchKeys":["KSLog","fun KSLog(defaultTag: String, levels: Iterable, messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog","dev.inmo.kslog.common.KSLog"]},{"name":"fun KSLog(defaultTag: String, logger: Logger, filter: MessageFilter = { _, _, _ -> true }, messageFormatter: MessageFormatter = defaultMessageFormatter): CallbackKSLog","description":"dev.inmo.kslog.common.KSLog","location":"kslog/dev.inmo.kslog.common/-k-s-log.html","searchKeys":["KSLog","fun KSLog(defaultTag: String, logger: Logger, filter: MessageFilter = { _, _, _ -> true }, messageFormatter: MessageFormatter = defaultMessageFormatter): CallbackKSLog","dev.inmo.kslog.common.KSLog"]},{"name":"fun KSLog(defaultTag: String, logger: Logger, firstLevel: LogLevel, secondLevel: LogLevel, vararg otherLevels: LogLevel, messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog","description":"dev.inmo.kslog.common.KSLog","location":"kslog/dev.inmo.kslog.common/-k-s-log.html","searchKeys":["KSLog","fun KSLog(defaultTag: String, logger: Logger, firstLevel: LogLevel, secondLevel: LogLevel, vararg otherLevels: LogLevel, messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog","dev.inmo.kslog.common.KSLog"]},{"name":"fun KSLog(defaultTag: String, logger: Logger, levels: Iterable, messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog","description":"dev.inmo.kslog.common.KSLog","location":"kslog/dev.inmo.kslog.common/-k-s-log.html","searchKeys":["KSLog","fun KSLog(defaultTag: String, logger: Logger, levels: Iterable, messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog","dev.inmo.kslog.common.KSLog"]},{"name":"fun KSLog(defaultTag: String, logger: Logger, minLoggingLevel: LogLevel = LogLevel.values().first(), messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog","description":"dev.inmo.kslog.common.KSLog","location":"kslog/dev.inmo.kslog.common/-k-s-log.html","searchKeys":["KSLog","fun KSLog(defaultTag: String, logger: Logger, minLoggingLevel: LogLevel = LogLevel.values().first(), messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog","dev.inmo.kslog.common.KSLog"]},{"name":"fun KSLog(defaultTag: String, minLoggingLevel: LogLevel, messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog","description":"dev.inmo.kslog.common.KSLog","location":"kslog/dev.inmo.kslog.common/-k-s-log.html","searchKeys":["KSLog","fun KSLog(defaultTag: String, minLoggingLevel: LogLevel, messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog","dev.inmo.kslog.common.KSLog"]},{"name":"fun TagLogger(tag: String)","description":"dev.inmo.kslog.common.TagLogger.TagLogger","location":"kslog/dev.inmo.kslog.common/-tag-logger/-tag-logger.html","searchKeys":["TagLogger","fun TagLogger(tag: String)","dev.inmo.kslog.common.TagLogger.TagLogger"]},{"name":"inline fun KSLog.assert(e: Throwable? = null, noinline messageBuilder: () -> String)","description":"dev.inmo.kslog.common.assert","location":"kslog/dev.inmo.kslog.common/assert.html","searchKeys":["assert","inline fun KSLog.assert(e: Throwable? = null, noinline messageBuilder: () -> String)","dev.inmo.kslog.common.assert"]},{"name":"inline fun KSLog.assert(message: String, e: Throwable? = null)","description":"dev.inmo.kslog.common.assert","location":"kslog/dev.inmo.kslog.common/assert.html","searchKeys":["assert","inline fun KSLog.assert(message: String, e: Throwable? = null)","dev.inmo.kslog.common.assert"]},{"name":"inline fun KSLog.assert(tag: String, message: String, e: Throwable? = null)","description":"dev.inmo.kslog.common.assert","location":"kslog/dev.inmo.kslog.common/assert.html","searchKeys":["assert","inline fun KSLog.assert(tag: String, message: String, e: Throwable? = null)","dev.inmo.kslog.common.assert"]},{"name":"inline fun KSLog.assert(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> String)","description":"dev.inmo.kslog.common.assert","location":"kslog/dev.inmo.kslog.common/assert.html","searchKeys":["assert","inline fun KSLog.assert(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> String)","dev.inmo.kslog.common.assert"]},{"name":"inline fun KSLog.d(e: Throwable? = null, noinline messageBuilder: () -> String)","description":"dev.inmo.kslog.common.d","location":"kslog/dev.inmo.kslog.common/d.html","searchKeys":["d","inline fun KSLog.d(e: Throwable? = null, noinline messageBuilder: () -> String)","dev.inmo.kslog.common.d"]},{"name":"inline fun KSLog.d(message: String, e: Throwable? = null)","description":"dev.inmo.kslog.common.d","location":"kslog/dev.inmo.kslog.common/d.html","searchKeys":["d","inline fun KSLog.d(message: String, e: Throwable? = null)","dev.inmo.kslog.common.d"]},{"name":"inline fun KSLog.d(tag: String, message: String, e: Throwable? = null)","description":"dev.inmo.kslog.common.d","location":"kslog/dev.inmo.kslog.common/d.html","searchKeys":["d","inline fun KSLog.d(tag: String, message: String, e: Throwable? = null)","dev.inmo.kslog.common.d"]},{"name":"inline fun KSLog.d(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> String)","description":"dev.inmo.kslog.common.d","location":"kslog/dev.inmo.kslog.common/d.html","searchKeys":["d","inline fun KSLog.d(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> String)","dev.inmo.kslog.common.d"]},{"name":"inline fun KSLog.debug(e: Throwable? = null, noinline messageBuilder: () -> String)","description":"dev.inmo.kslog.common.debug","location":"kslog/dev.inmo.kslog.common/debug.html","searchKeys":["debug","inline fun KSLog.debug(e: Throwable? = null, noinline messageBuilder: () -> String)","dev.inmo.kslog.common.debug"]},{"name":"inline fun KSLog.debug(message: String, e: Throwable? = null)","description":"dev.inmo.kslog.common.debug","location":"kslog/dev.inmo.kslog.common/debug.html","searchKeys":["debug","inline fun KSLog.debug(message: String, e: Throwable? = null)","dev.inmo.kslog.common.debug"]},{"name":"inline fun KSLog.debug(tag: String, message: String, e: Throwable? = null)","description":"dev.inmo.kslog.common.debug","location":"kslog/dev.inmo.kslog.common/debug.html","searchKeys":["debug","inline fun KSLog.debug(tag: String, message: String, e: Throwable? = null)","dev.inmo.kslog.common.debug"]},{"name":"inline fun KSLog.debug(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> String)","description":"dev.inmo.kslog.common.debug","location":"kslog/dev.inmo.kslog.common/debug.html","searchKeys":["debug","inline fun KSLog.debug(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> String)","dev.inmo.kslog.common.debug"]},{"name":"inline fun KSLog.e(e: Throwable? = null, noinline messageBuilder: () -> String)","description":"dev.inmo.kslog.common.e","location":"kslog/dev.inmo.kslog.common/e.html","searchKeys":["e","inline fun KSLog.e(e: Throwable? = null, noinline messageBuilder: () -> String)","dev.inmo.kslog.common.e"]},{"name":"inline fun KSLog.e(message: String, e: Throwable? = null)","description":"dev.inmo.kslog.common.e","location":"kslog/dev.inmo.kslog.common/e.html","searchKeys":["e","inline fun KSLog.e(message: String, e: Throwable? = null)","dev.inmo.kslog.common.e"]},{"name":"inline fun KSLog.e(tag: String, message: String, e: Throwable? = null)","description":"dev.inmo.kslog.common.e","location":"kslog/dev.inmo.kslog.common/e.html","searchKeys":["e","inline fun KSLog.e(tag: String, message: String, e: Throwable? = null)","dev.inmo.kslog.common.e"]},{"name":"inline fun KSLog.e(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> String)","description":"dev.inmo.kslog.common.e","location":"kslog/dev.inmo.kslog.common/e.html","searchKeys":["e","inline fun KSLog.e(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> String)","dev.inmo.kslog.common.e"]},{"name":"inline fun KSLog.error(e: Throwable? = null, noinline messageBuilder: () -> String)","description":"dev.inmo.kslog.common.error","location":"kslog/dev.inmo.kslog.common/error.html","searchKeys":["error","inline fun KSLog.error(e: Throwable? = null, noinline messageBuilder: () -> String)","dev.inmo.kslog.common.error"]},{"name":"inline fun KSLog.error(message: String, e: Throwable? = null)","description":"dev.inmo.kslog.common.error","location":"kslog/dev.inmo.kslog.common/error.html","searchKeys":["error","inline fun KSLog.error(message: String, e: Throwable? = null)","dev.inmo.kslog.common.error"]},{"name":"inline fun KSLog.error(tag: String, message: String, e: Throwable? = null)","description":"dev.inmo.kslog.common.error","location":"kslog/dev.inmo.kslog.common/error.html","searchKeys":["error","inline fun KSLog.error(tag: String, message: String, e: Throwable? = null)","dev.inmo.kslog.common.error"]},{"name":"inline fun KSLog.error(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> String)","description":"dev.inmo.kslog.common.error","location":"kslog/dev.inmo.kslog.common/error.html","searchKeys":["error","inline fun KSLog.error(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> String)","dev.inmo.kslog.common.error"]},{"name":"inline fun KSLog.i(e: Throwable? = null, noinline messageBuilder: () -> String)","description":"dev.inmo.kslog.common.i","location":"kslog/dev.inmo.kslog.common/i.html","searchKeys":["i","inline fun KSLog.i(e: Throwable? = null, noinline messageBuilder: () -> String)","dev.inmo.kslog.common.i"]},{"name":"inline fun KSLog.i(message: String, e: Throwable? = null)","description":"dev.inmo.kslog.common.i","location":"kslog/dev.inmo.kslog.common/i.html","searchKeys":["i","inline fun KSLog.i(message: String, e: Throwable? = null)","dev.inmo.kslog.common.i"]},{"name":"inline fun KSLog.i(tag: String, message: String, e: Throwable? = null)","description":"dev.inmo.kslog.common.i","location":"kslog/dev.inmo.kslog.common/i.html","searchKeys":["i","inline fun KSLog.i(tag: String, message: String, e: Throwable? = null)","dev.inmo.kslog.common.i"]},{"name":"inline fun KSLog.i(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> String)","description":"dev.inmo.kslog.common.i","location":"kslog/dev.inmo.kslog.common/i.html","searchKeys":["i","inline fun KSLog.i(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> String)","dev.inmo.kslog.common.i"]},{"name":"inline fun KSLog.info(e: Throwable? = null, noinline messageBuilder: () -> String)","description":"dev.inmo.kslog.common.info","location":"kslog/dev.inmo.kslog.common/info.html","searchKeys":["info","inline fun KSLog.info(e: Throwable? = null, noinline messageBuilder: () -> String)","dev.inmo.kslog.common.info"]},{"name":"inline fun KSLog.info(message: String, e: Throwable? = null)","description":"dev.inmo.kslog.common.info","location":"kslog/dev.inmo.kslog.common/info.html","searchKeys":["info","inline fun KSLog.info(message: String, e: Throwable? = null)","dev.inmo.kslog.common.info"]},{"name":"inline fun KSLog.info(tag: String, message: String, e: Throwable? = null)","description":"dev.inmo.kslog.common.info","location":"kslog/dev.inmo.kslog.common/info.html","searchKeys":["info","inline fun KSLog.info(tag: String, message: String, e: Throwable? = null)","dev.inmo.kslog.common.info"]},{"name":"inline fun KSLog.info(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> String)","description":"dev.inmo.kslog.common.info","location":"kslog/dev.inmo.kslog.common/info.html","searchKeys":["info","inline fun KSLog.info(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> String)","dev.inmo.kslog.common.info"]},{"name":"inline fun KSLog.l(level: LogLevel, e: Throwable? = null, noinline messageBuilder: () -> String)","description":"dev.inmo.kslog.common.l","location":"kslog/dev.inmo.kslog.common/l.html","searchKeys":["l","inline fun KSLog.l(level: LogLevel, e: Throwable? = null, noinline messageBuilder: () -> String)","dev.inmo.kslog.common.l"]},{"name":"inline fun KSLog.l(level: LogLevel, message: String, e: Throwable? = null)","description":"dev.inmo.kslog.common.l","location":"kslog/dev.inmo.kslog.common/l.html","searchKeys":["l","inline fun KSLog.l(level: LogLevel, message: String, e: Throwable? = null)","dev.inmo.kslog.common.l"]},{"name":"inline fun KSLog.l(level: LogLevel, tag: String, message: String, e: Throwable? = null)","description":"dev.inmo.kslog.common.l","location":"kslog/dev.inmo.kslog.common/l.html","searchKeys":["l","inline fun KSLog.l(level: LogLevel, tag: String, message: String, e: Throwable? = null)","dev.inmo.kslog.common.l"]},{"name":"inline fun KSLog.l(level: LogLevel, tag: String?, e: Throwable? = null, noinline messageBuilder: () -> String)","description":"dev.inmo.kslog.common.l","location":"kslog/dev.inmo.kslog.common/l.html","searchKeys":["l","inline fun KSLog.l(level: LogLevel, tag: String?, e: Throwable? = null, noinline messageBuilder: () -> String)","dev.inmo.kslog.common.l"]},{"name":"inline fun KSLog.log(level: LogLevel, e: Throwable? = null, noinline messageBuilder: () -> String)","description":"dev.inmo.kslog.common.log","location":"kslog/dev.inmo.kslog.common/log.html","searchKeys":["log","inline fun KSLog.log(level: LogLevel, e: Throwable? = null, noinline messageBuilder: () -> String)","dev.inmo.kslog.common.log"]},{"name":"inline fun KSLog.log(level: LogLevel, message: String, e: Throwable? = null)","description":"dev.inmo.kslog.common.log","location":"kslog/dev.inmo.kslog.common/log.html","searchKeys":["log","inline fun KSLog.log(level: LogLevel, message: String, e: Throwable? = null)","dev.inmo.kslog.common.log"]},{"name":"inline fun KSLog.log(level: LogLevel, tag: String, message: String, e: Throwable? = null)","description":"dev.inmo.kslog.common.log","location":"kslog/dev.inmo.kslog.common/log.html","searchKeys":["log","inline fun KSLog.log(level: LogLevel, tag: String, message: String, e: Throwable? = null)","dev.inmo.kslog.common.log"]},{"name":"inline fun KSLog.log(level: LogLevel, tag: String?, e: Throwable? = null, noinline messageBuilder: () -> String)","description":"dev.inmo.kslog.common.log","location":"kslog/dev.inmo.kslog.common/log.html","searchKeys":["log","inline fun KSLog.log(level: LogLevel, tag: String?, e: Throwable? = null, noinline messageBuilder: () -> String)","dev.inmo.kslog.common.log"]},{"name":"inline fun KSLog.v(e: Throwable? = null, noinline messageBuilder: () -> String)","description":"dev.inmo.kslog.common.v","location":"kslog/dev.inmo.kslog.common/v.html","searchKeys":["v","inline fun KSLog.v(e: Throwable? = null, noinline messageBuilder: () -> String)","dev.inmo.kslog.common.v"]},{"name":"inline fun KSLog.v(message: String, e: Throwable? = null)","description":"dev.inmo.kslog.common.v","location":"kslog/dev.inmo.kslog.common/v.html","searchKeys":["v","inline fun KSLog.v(message: String, e: Throwable? = null)","dev.inmo.kslog.common.v"]},{"name":"inline fun KSLog.v(tag: String, message: String, e: Throwable? = null)","description":"dev.inmo.kslog.common.v","location":"kslog/dev.inmo.kslog.common/v.html","searchKeys":["v","inline fun KSLog.v(tag: String, message: String, e: Throwable? = null)","dev.inmo.kslog.common.v"]},{"name":"inline fun KSLog.v(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> String)","description":"dev.inmo.kslog.common.v","location":"kslog/dev.inmo.kslog.common/v.html","searchKeys":["v","inline fun KSLog.v(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> String)","dev.inmo.kslog.common.v"]},{"name":"inline fun KSLog.verbose(e: Throwable? = null, noinline messageBuilder: () -> String)","description":"dev.inmo.kslog.common.verbose","location":"kslog/dev.inmo.kslog.common/verbose.html","searchKeys":["verbose","inline fun KSLog.verbose(e: Throwable? = null, noinline messageBuilder: () -> String)","dev.inmo.kslog.common.verbose"]},{"name":"inline fun KSLog.verbose(message: String, e: Throwable? = null)","description":"dev.inmo.kslog.common.verbose","location":"kslog/dev.inmo.kslog.common/verbose.html","searchKeys":["verbose","inline fun KSLog.verbose(message: String, e: Throwable? = null)","dev.inmo.kslog.common.verbose"]},{"name":"inline fun KSLog.verbose(tag: String, message: String, e: Throwable? = null)","description":"dev.inmo.kslog.common.verbose","location":"kslog/dev.inmo.kslog.common/verbose.html","searchKeys":["verbose","inline fun KSLog.verbose(tag: String, message: String, e: Throwable? = null)","dev.inmo.kslog.common.verbose"]},{"name":"inline fun KSLog.verbose(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> String)","description":"dev.inmo.kslog.common.verbose","location":"kslog/dev.inmo.kslog.common/verbose.html","searchKeys":["verbose","inline fun KSLog.verbose(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> String)","dev.inmo.kslog.common.verbose"]},{"name":"inline fun KSLog.w(e: Throwable? = null, noinline messageBuilder: () -> String)","description":"dev.inmo.kslog.common.w","location":"kslog/dev.inmo.kslog.common/w.html","searchKeys":["w","inline fun KSLog.w(e: Throwable? = null, noinline messageBuilder: () -> String)","dev.inmo.kslog.common.w"]},{"name":"inline fun KSLog.w(message: String, e: Throwable? = null)","description":"dev.inmo.kslog.common.w","location":"kslog/dev.inmo.kslog.common/w.html","searchKeys":["w","inline fun KSLog.w(message: String, e: Throwable? = null)","dev.inmo.kslog.common.w"]},{"name":"inline fun KSLog.w(tag: String, message: String, e: Throwable? = null)","description":"dev.inmo.kslog.common.w","location":"kslog/dev.inmo.kslog.common/w.html","searchKeys":["w","inline fun KSLog.w(tag: String, message: String, e: Throwable? = null)","dev.inmo.kslog.common.w"]},{"name":"inline fun KSLog.w(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> String)","description":"dev.inmo.kslog.common.w","location":"kslog/dev.inmo.kslog.common/w.html","searchKeys":["w","inline fun KSLog.w(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> String)","dev.inmo.kslog.common.w"]},{"name":"inline fun KSLog.warning(e: Throwable? = null, noinline messageBuilder: () -> String)","description":"dev.inmo.kslog.common.warning","location":"kslog/dev.inmo.kslog.common/warning.html","searchKeys":["warning","inline fun KSLog.warning(e: Throwable? = null, noinline messageBuilder: () -> String)","dev.inmo.kslog.common.warning"]},{"name":"inline fun KSLog.warning(message: String, e: Throwable? = null)","description":"dev.inmo.kslog.common.warning","location":"kslog/dev.inmo.kslog.common/warning.html","searchKeys":["warning","inline fun KSLog.warning(message: String, e: Throwable? = null)","dev.inmo.kslog.common.warning"]},{"name":"inline fun KSLog.warning(tag: String, message: String, e: Throwable? = null)","description":"dev.inmo.kslog.common.warning","location":"kslog/dev.inmo.kslog.common/warning.html","searchKeys":["warning","inline fun KSLog.warning(tag: String, message: String, e: Throwable? = null)","dev.inmo.kslog.common.warning"]},{"name":"inline fun KSLog.warning(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> String)","description":"dev.inmo.kslog.common.warning","location":"kslog/dev.inmo.kslog.common/warning.html","searchKeys":["warning","inline fun KSLog.warning(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> String)","dev.inmo.kslog.common.warning"]},{"name":"inline fun KSLog.wtf(e: Throwable? = null, noinline messageBuilder: () -> String)","description":"dev.inmo.kslog.common.wtf","location":"kslog/dev.inmo.kslog.common/wtf.html","searchKeys":["wtf","inline fun KSLog.wtf(e: Throwable? = null, noinline messageBuilder: () -> String)","dev.inmo.kslog.common.wtf"]},{"name":"inline fun KSLog.wtf(message: String, e: Throwable? = null)","description":"dev.inmo.kslog.common.wtf","location":"kslog/dev.inmo.kslog.common/wtf.html","searchKeys":["wtf","inline fun KSLog.wtf(message: String, e: Throwable? = null)","dev.inmo.kslog.common.wtf"]},{"name":"inline fun KSLog.wtf(tag: String, message: String, e: Throwable? = null)","description":"dev.inmo.kslog.common.wtf","location":"kslog/dev.inmo.kslog.common/wtf.html","searchKeys":["wtf","inline fun KSLog.wtf(tag: String, message: String, e: Throwable? = null)","dev.inmo.kslog.common.wtf"]},{"name":"inline fun KSLog.wtf(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> String)","description":"dev.inmo.kslog.common.wtf","location":"kslog/dev.inmo.kslog.common/wtf.html","searchKeys":["wtf","inline fun KSLog.wtf(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> String)","dev.inmo.kslog.common.wtf"]},{"name":"inline suspend fun KSLog.assertS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)","description":"dev.inmo.kslog.common.assertS","location":"kslog/dev.inmo.kslog.common/assert-s.html","searchKeys":["assertS","inline suspend fun KSLog.assertS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)","dev.inmo.kslog.common.assertS"]},{"name":"inline suspend fun KSLog.assertS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> String)","description":"dev.inmo.kslog.common.assertS","location":"kslog/dev.inmo.kslog.common/assert-s.html","searchKeys":["assertS","inline suspend fun KSLog.assertS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> String)","dev.inmo.kslog.common.assertS"]},{"name":"inline suspend fun KSLog.dS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)","description":"dev.inmo.kslog.common.dS","location":"kslog/dev.inmo.kslog.common/d-s.html","searchKeys":["dS","inline suspend fun KSLog.dS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)","dev.inmo.kslog.common.dS"]},{"name":"inline suspend fun KSLog.dS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> String)","description":"dev.inmo.kslog.common.dS","location":"kslog/dev.inmo.kslog.common/d-s.html","searchKeys":["dS","inline suspend fun KSLog.dS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> String)","dev.inmo.kslog.common.dS"]},{"name":"inline suspend fun KSLog.debugS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)","description":"dev.inmo.kslog.common.debugS","location":"kslog/dev.inmo.kslog.common/debug-s.html","searchKeys":["debugS","inline suspend fun KSLog.debugS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)","dev.inmo.kslog.common.debugS"]},{"name":"inline suspend fun KSLog.debugS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> String)","description":"dev.inmo.kslog.common.debugS","location":"kslog/dev.inmo.kslog.common/debug-s.html","searchKeys":["debugS","inline suspend fun KSLog.debugS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> String)","dev.inmo.kslog.common.debugS"]},{"name":"inline suspend fun KSLog.eS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)","description":"dev.inmo.kslog.common.eS","location":"kslog/dev.inmo.kslog.common/e-s.html","searchKeys":["eS","inline suspend fun KSLog.eS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)","dev.inmo.kslog.common.eS"]},{"name":"inline suspend fun KSLog.eS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> String)","description":"dev.inmo.kslog.common.eS","location":"kslog/dev.inmo.kslog.common/e-s.html","searchKeys":["eS","inline suspend fun KSLog.eS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> String)","dev.inmo.kslog.common.eS"]},{"name":"inline suspend fun KSLog.errorS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)","description":"dev.inmo.kslog.common.errorS","location":"kslog/dev.inmo.kslog.common/error-s.html","searchKeys":["errorS","inline suspend fun KSLog.errorS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)","dev.inmo.kslog.common.errorS"]},{"name":"inline suspend fun KSLog.errorS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> String)","description":"dev.inmo.kslog.common.errorS","location":"kslog/dev.inmo.kslog.common/error-s.html","searchKeys":["errorS","inline suspend fun KSLog.errorS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> String)","dev.inmo.kslog.common.errorS"]},{"name":"inline suspend fun KSLog.iS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)","description":"dev.inmo.kslog.common.iS","location":"kslog/dev.inmo.kslog.common/i-s.html","searchKeys":["iS","inline suspend fun KSLog.iS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)","dev.inmo.kslog.common.iS"]},{"name":"inline suspend fun KSLog.iS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> String)","description":"dev.inmo.kslog.common.iS","location":"kslog/dev.inmo.kslog.common/i-s.html","searchKeys":["iS","inline suspend fun KSLog.iS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> String)","dev.inmo.kslog.common.iS"]},{"name":"inline suspend fun KSLog.infoS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)","description":"dev.inmo.kslog.common.infoS","location":"kslog/dev.inmo.kslog.common/info-s.html","searchKeys":["infoS","inline suspend fun KSLog.infoS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)","dev.inmo.kslog.common.infoS"]},{"name":"inline suspend fun KSLog.infoS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> String)","description":"dev.inmo.kslog.common.infoS","location":"kslog/dev.inmo.kslog.common/info-s.html","searchKeys":["infoS","inline suspend fun KSLog.infoS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> String)","dev.inmo.kslog.common.infoS"]},{"name":"inline suspend fun KSLog.lS(level: LogLevel, e: Throwable? = null, noinline messageBuilder: suspend () -> String)","description":"dev.inmo.kslog.common.lS","location":"kslog/dev.inmo.kslog.common/l-s.html","searchKeys":["lS","inline suspend fun KSLog.lS(level: LogLevel, e: Throwable? = null, noinline messageBuilder: suspend () -> String)","dev.inmo.kslog.common.lS"]},{"name":"inline suspend fun KSLog.lS(level: LogLevel, tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> String)","description":"dev.inmo.kslog.common.lS","location":"kslog/dev.inmo.kslog.common/l-s.html","searchKeys":["lS","inline suspend fun KSLog.lS(level: LogLevel, tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> String)","dev.inmo.kslog.common.lS"]},{"name":"inline suspend fun KSLog.logS(level: LogLevel, e: Throwable? = null, noinline messageBuilder: suspend () -> String)","description":"dev.inmo.kslog.common.logS","location":"kslog/dev.inmo.kslog.common/log-s.html","searchKeys":["logS","inline suspend fun KSLog.logS(level: LogLevel, e: Throwable? = null, noinline messageBuilder: suspend () -> String)","dev.inmo.kslog.common.logS"]},{"name":"inline suspend fun KSLog.logS(level: LogLevel, tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> String)","description":"dev.inmo.kslog.common.logS","location":"kslog/dev.inmo.kslog.common/log-s.html","searchKeys":["logS","inline suspend fun KSLog.logS(level: LogLevel, tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> String)","dev.inmo.kslog.common.logS"]},{"name":"inline suspend fun KSLog.vS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)","description":"dev.inmo.kslog.common.vS","location":"kslog/dev.inmo.kslog.common/v-s.html","searchKeys":["vS","inline suspend fun KSLog.vS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)","dev.inmo.kslog.common.vS"]},{"name":"inline suspend fun KSLog.vS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> String)","description":"dev.inmo.kslog.common.vS","location":"kslog/dev.inmo.kslog.common/v-s.html","searchKeys":["vS","inline suspend fun KSLog.vS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> String)","dev.inmo.kslog.common.vS"]},{"name":"inline suspend fun KSLog.verboseS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)","description":"dev.inmo.kslog.common.verboseS","location":"kslog/dev.inmo.kslog.common/verbose-s.html","searchKeys":["verboseS","inline suspend fun KSLog.verboseS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)","dev.inmo.kslog.common.verboseS"]},{"name":"inline suspend fun KSLog.verboseS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> String)","description":"dev.inmo.kslog.common.verboseS","location":"kslog/dev.inmo.kslog.common/verbose-s.html","searchKeys":["verboseS","inline suspend fun KSLog.verboseS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> String)","dev.inmo.kslog.common.verboseS"]},{"name":"inline suspend fun KSLog.wS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)","description":"dev.inmo.kslog.common.wS","location":"kslog/dev.inmo.kslog.common/w-s.html","searchKeys":["wS","inline suspend fun KSLog.wS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)","dev.inmo.kslog.common.wS"]},{"name":"inline suspend fun KSLog.wS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> String)","description":"dev.inmo.kslog.common.wS","location":"kslog/dev.inmo.kslog.common/w-s.html","searchKeys":["wS","inline suspend fun KSLog.wS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> String)","dev.inmo.kslog.common.wS"]},{"name":"inline suspend fun KSLog.warningS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)","description":"dev.inmo.kslog.common.warningS","location":"kslog/dev.inmo.kslog.common/warning-s.html","searchKeys":["warningS","inline suspend fun KSLog.warningS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)","dev.inmo.kslog.common.warningS"]},{"name":"inline suspend fun KSLog.warningS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> String)","description":"dev.inmo.kslog.common.warningS","location":"kslog/dev.inmo.kslog.common/warning-s.html","searchKeys":["warningS","inline suspend fun KSLog.warningS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> String)","dev.inmo.kslog.common.warningS"]},{"name":"inline suspend fun KSLog.wtfS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)","description":"dev.inmo.kslog.common.wtfS","location":"kslog/dev.inmo.kslog.common/wtf-s.html","searchKeys":["wtfS","inline suspend fun KSLog.wtfS(e: Throwable? = null, noinline messageBuilder: suspend () -> String)","dev.inmo.kslog.common.wtfS"]},{"name":"inline suspend fun KSLog.wtfS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> String)","description":"dev.inmo.kslog.common.wtfS","location":"kslog/dev.inmo.kslog.common/wtf-s.html","searchKeys":["wtfS","inline suspend fun KSLog.wtfS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> String)","dev.inmo.kslog.common.wtfS"]},{"name":"interface KSLog","description":"dev.inmo.kslog.common.KSLog","location":"kslog/dev.inmo.kslog.common/-k-s-log/index.html","searchKeys":["KSLog","interface KSLog","dev.inmo.kslog.common.KSLog"]},{"name":"object Companion : KSLog","description":"dev.inmo.kslog.common.KSLog.Companion","location":"kslog/dev.inmo.kslog.common/-k-s-log/-companion/index.html","searchKeys":["Companion","object Companion : KSLog","dev.inmo.kslog.common.KSLog.Companion"]},{"name":"open fun performLog(level: LogLevel, message: String, throwable: Throwable?)","description":"dev.inmo.kslog.common.KSLog.performLog","location":"kslog/dev.inmo.kslog.common/-k-s-log/perform-log.html","searchKeys":["performLog","open fun performLog(level: LogLevel, message: String, throwable: Throwable?)","dev.inmo.kslog.common.KSLog.performLog"]},{"name":"open fun performLog(level: LogLevel, tag: String?, throwable: Throwable?, messageBuilder: () -> String)","description":"dev.inmo.kslog.common.KSLog.performLog","location":"kslog/dev.inmo.kslog.common/-k-s-log/perform-log.html","searchKeys":["performLog","open fun performLog(level: LogLevel, tag: String?, throwable: Throwable?, messageBuilder: () -> String)","dev.inmo.kslog.common.KSLog.performLog"]},{"name":"open override fun performLog(level: LogLevel, message: String, throwable: Throwable?)","description":"dev.inmo.kslog.common.KSLog.Companion.performLog","location":"kslog/dev.inmo.kslog.common/-k-s-log/-companion/perform-log.html","searchKeys":["performLog","open override fun performLog(level: LogLevel, message: String, throwable: Throwable?)","dev.inmo.kslog.common.KSLog.Companion.performLog"]},{"name":"open override fun performLog(level: LogLevel, tag: String?, message: String, throwable: Throwable?)","description":"dev.inmo.kslog.common.CallbackKSLog.performLog","location":"kslog/dev.inmo.kslog.common/-callback-k-s-log/perform-log.html","searchKeys":["performLog","open override fun performLog(level: LogLevel, tag: String?, message: String, throwable: Throwable?)","dev.inmo.kslog.common.CallbackKSLog.performLog"]},{"name":"open override fun performLog(level: LogLevel, tag: String?, message: String, throwable: Throwable?)","description":"dev.inmo.kslog.common.DefaultKSLog.performLog","location":"kslog/dev.inmo.kslog.common/-default-k-s-log/perform-log.html","searchKeys":["performLog","open override fun performLog(level: LogLevel, tag: String?, message: String, throwable: Throwable?)","dev.inmo.kslog.common.DefaultKSLog.performLog"]},{"name":"open override fun performLog(level: LogLevel, tag: String?, message: String, throwable: Throwable?)","description":"dev.inmo.kslog.common.KSLog.Companion.performLog","location":"kslog/dev.inmo.kslog.common/-k-s-log/-companion/perform-log.html","searchKeys":["performLog","open override fun performLog(level: LogLevel, tag: String?, message: String, throwable: Throwable?)","dev.inmo.kslog.common.KSLog.Companion.performLog"]},{"name":"open override fun performLog(level: LogLevel, tag: String?, message: String, throwable: Throwable?)","description":"dev.inmo.kslog.common.TagLogger.performLog","location":"kslog/dev.inmo.kslog.common/-tag-logger/perform-log.html","searchKeys":["performLog","open override fun performLog(level: LogLevel, tag: String?, message: String, throwable: Throwable?)","dev.inmo.kslog.common.TagLogger.performLog"]},{"name":"open override fun performLog(level: LogLevel, tag: String?, throwable: Throwable?, messageBuilder: () -> String)","description":"dev.inmo.kslog.common.DefaultKSLog.performLog","location":"kslog/dev.inmo.kslog.common/-default-k-s-log/perform-log.html","searchKeys":["performLog","open override fun performLog(level: LogLevel, tag: String?, throwable: Throwable?, messageBuilder: () -> String)","dev.inmo.kslog.common.DefaultKSLog.performLog"]},{"name":"open override fun performLog(level: LogLevel, tag: String?, throwable: Throwable?, messageBuilder: () -> String)","description":"dev.inmo.kslog.common.KSLog.Companion.performLog","location":"kslog/dev.inmo.kslog.common/-k-s-log/-companion/perform-log.html","searchKeys":["performLog","open override fun performLog(level: LogLevel, tag: String?, throwable: Throwable?, messageBuilder: () -> String)","dev.inmo.kslog.common.KSLog.Companion.performLog"]},{"name":"open suspend fun performLogS(level: LogLevel, tag: String?, throwable: Throwable?, messageBuilder: suspend () -> String)","description":"dev.inmo.kslog.common.KSLog.performLogS","location":"kslog/dev.inmo.kslog.common/-k-s-log/perform-log-s.html","searchKeys":["performLogS","open suspend fun performLogS(level: LogLevel, tag: String?, throwable: Throwable?, messageBuilder: suspend () -> String)","dev.inmo.kslog.common.KSLog.performLogS"]},{"name":"open suspend override fun performLogS(level: LogLevel, tag: String?, throwable: Throwable?, messageBuilder: suspend () -> String)","description":"dev.inmo.kslog.common.DefaultKSLog.performLogS","location":"kslog/dev.inmo.kslog.common/-default-k-s-log/perform-log-s.html","searchKeys":["performLogS","open suspend override fun performLogS(level: LogLevel, tag: String?, throwable: Throwable?, messageBuilder: suspend () -> String)","dev.inmo.kslog.common.DefaultKSLog.performLogS"]},{"name":"open suspend override fun performLogS(level: LogLevel, tag: String?, throwable: Throwable?, messageBuilder: suspend () -> String)","description":"dev.inmo.kslog.common.KSLog.Companion.performLogS","location":"kslog/dev.inmo.kslog.common/-k-s-log/-companion/perform-log-s.html","searchKeys":["performLogS","open suspend override fun performLogS(level: LogLevel, tag: String?, throwable: Throwable?, messageBuilder: suspend () -> String)","dev.inmo.kslog.common.KSLog.Companion.performLogS"]},{"name":"operator fun KSLog.invoke(performLogCallback: (level: LogLevel, tag: String?, message: String, throwable: Throwable?) -> Unit): CallbackKSLog","description":"dev.inmo.kslog.common.invoke","location":"kslog/dev.inmo.kslog.common/invoke.html","searchKeys":["invoke","operator fun KSLog.invoke(performLogCallback: (level: LogLevel, tag: String?, message: String, throwable: Throwable?) -> Unit): CallbackKSLog","dev.inmo.kslog.common.invoke"]},{"name":"val Any.logTag: String","description":"dev.inmo.kslog.common.logTag","location":"kslog/dev.inmo.kslog.common/log-tag.html","searchKeys":["logTag","val Any.logTag: String","dev.inmo.kslog.common.logTag"]},{"name":"val Any.logger: KSLog","description":"dev.inmo.kslog.common.logger","location":"kslog/dev.inmo.kslog.common/logger.html","searchKeys":["logger","val Any.logger: KSLog","dev.inmo.kslog.common.logger"]},{"name":"val defaultMessageFormatter: MessageFormatter","description":"dev.inmo.kslog.common.defaultMessageFormatter","location":"kslog/dev.inmo.kslog.common/default-message-formatter.html","searchKeys":["defaultMessageFormatter","val defaultMessageFormatter: MessageFormatter","dev.inmo.kslog.common.defaultMessageFormatter"]},{"name":"val filter: MessageFilter","description":"dev.inmo.kslog.common.DefaultKSLog.filter","location":"kslog/dev.inmo.kslog.common/-default-k-s-log/filter.html","searchKeys":["filter","val filter: MessageFilter","dev.inmo.kslog.common.DefaultKSLog.filter"]},{"name":"val tag: String","description":"dev.inmo.kslog.common.TagLogger.tag","location":"kslog/dev.inmo.kslog.common/-tag-logger/tag.html","searchKeys":["tag","val tag: String","dev.inmo.kslog.common.TagLogger.tag"]},{"name":"value class TagLogger(val tag: String) : KSLog","description":"dev.inmo.kslog.common.TagLogger","location":"kslog/dev.inmo.kslog.common/-tag-logger/index.html","searchKeys":["TagLogger","value class TagLogger(val tag: String) : KSLog","dev.inmo.kslog.common.TagLogger"]},{"name":"var default: KSLog","description":"dev.inmo.kslog.common.KSLog.Companion.default","location":"kslog/dev.inmo.kslog.common/-k-s-log/-companion/default.html","searchKeys":["default","var default: KSLog","dev.inmo.kslog.common.KSLog.Companion.default"]}] +[{"name":"ASSERT()","description":"dev.inmo.kslog.common.LogLevel.ASSERT","location":"kslog/dev.inmo.kslog.common/-log-level/-a-s-s-e-r-t/index.html","searchKeys":["ASSERT","ASSERT()","dev.inmo.kslog.common.LogLevel.ASSERT"]},{"name":"DEBUG()","description":"dev.inmo.kslog.common.LogLevel.DEBUG","location":"kslog/dev.inmo.kslog.common/-log-level/-d-e-b-u-g/index.html","searchKeys":["DEBUG","DEBUG()","dev.inmo.kslog.common.LogLevel.DEBUG"]},{"name":"ERROR()","description":"dev.inmo.kslog.common.LogLevel.ERROR","location":"kslog/dev.inmo.kslog.common/-log-level/-e-r-r-o-r/index.html","searchKeys":["ERROR","ERROR()","dev.inmo.kslog.common.LogLevel.ERROR"]},{"name":"INFO()","description":"dev.inmo.kslog.common.LogLevel.INFO","location":"kslog/dev.inmo.kslog.common/-log-level/-i-n-f-o/index.html","searchKeys":["INFO","INFO()","dev.inmo.kslog.common.LogLevel.INFO"]},{"name":"VERBOSE()","description":"dev.inmo.kslog.common.LogLevel.VERBOSE","location":"kslog/dev.inmo.kslog.common/-log-level/-v-e-r-b-o-s-e/index.html","searchKeys":["VERBOSE","VERBOSE()","dev.inmo.kslog.common.LogLevel.VERBOSE"]},{"name":"WARNING()","description":"dev.inmo.kslog.common.LogLevel.WARNING","location":"kslog/dev.inmo.kslog.common/-log-level/-w-a-r-n-i-n-g/index.html","searchKeys":["WARNING","WARNING()","dev.inmo.kslog.common.LogLevel.WARNING"]},{"name":"abstract fun performLog(level: LogLevel, tag: String?, message: Any, throwable: Throwable?)","description":"dev.inmo.kslog.common.KSLog.performLog","location":"kslog/dev.inmo.kslog.common/-k-s-log/perform-log.html","searchKeys":["performLog","abstract fun performLog(level: LogLevel, tag: String?, message: Any, throwable: Throwable?)","dev.inmo.kslog.common.KSLog.performLog"]},{"name":"class CallbackKSLog(performLogCallback: SimpleKSLogCallback) : KSLog","description":"dev.inmo.kslog.common.CallbackKSLog","location":"kslog/dev.inmo.kslog.common/-callback-k-s-log/index.html","searchKeys":["CallbackKSLog","class CallbackKSLog(performLogCallback: SimpleKSLogCallback) : KSLog","dev.inmo.kslog.common.CallbackKSLog"]},{"name":"class DefaultKSLog(defaultTag: String, messageFormatter: MessageFormatter = defaultMessageFormatter, logging: (level: LogLevel, tag: String, message: Any, throwable: Throwable?) -> Unit = defaultLogging) : KSLog","description":"dev.inmo.kslog.common.DefaultKSLog","location":"kslog/dev.inmo.kslog.common/-default-k-s-log/index.html","searchKeys":["DefaultKSLog","class DefaultKSLog(defaultTag: String, messageFormatter: MessageFormatter = defaultMessageFormatter, logging: (level: LogLevel, tag: String, message: Any, throwable: Throwable?) -> Unit = defaultLogging) : KSLog","dev.inmo.kslog.common.DefaultKSLog"]},{"name":"class FilterKSLog(fallbackLogger: KSLog, messageFilter: MessageFilter) : KSLog","description":"dev.inmo.kslog.common.filter.FilterKSLog","location":"kslog/dev.inmo.kslog.common.filter/-filter-k-s-log/index.html","searchKeys":["FilterKSLog","class FilterKSLog(fallbackLogger: KSLog, messageFilter: MessageFilter) : KSLog","dev.inmo.kslog.common.filter.FilterKSLog"]},{"name":"class TypedKSLog(typedLoggers: Map?, KSLog>) : KSLog","description":"dev.inmo.kslog.common.typed.TypedKSLog","location":"kslog/dev.inmo.kslog.common.typed/-typed-k-s-log/index.html","searchKeys":["TypedKSLog","class TypedKSLog(typedLoggers: Map?, KSLog>) : KSLog","dev.inmo.kslog.common.typed.TypedKSLog"]},{"name":"class TypedKSLogBuilder(preset: Map?, KSLog> = emptyMap())","description":"dev.inmo.kslog.common.typed.TypedKSLogBuilder","location":"kslog/dev.inmo.kslog.common.typed/-typed-k-s-log-builder/index.html","searchKeys":["TypedKSLogBuilder","class TypedKSLogBuilder(preset: Map?, KSLog> = emptyMap())","dev.inmo.kslog.common.typed.TypedKSLogBuilder"]},{"name":"enum LogLevel : Enum ","description":"dev.inmo.kslog.common.LogLevel","location":"kslog/dev.inmo.kslog.common/-log-level/index.html","searchKeys":["LogLevel","enum LogLevel : Enum ","dev.inmo.kslog.common.LogLevel"]},{"name":"fun CallbackKSLog(performLogCallback: SimpleKSLogCallback)","description":"dev.inmo.kslog.common.CallbackKSLog.CallbackKSLog","location":"kslog/dev.inmo.kslog.common/-callback-k-s-log/-callback-k-s-log.html","searchKeys":["CallbackKSLog","fun CallbackKSLog(performLogCallback: SimpleKSLogCallback)","dev.inmo.kslog.common.CallbackKSLog.CallbackKSLog"]},{"name":"fun DefaultKSLog(defaultTag: String, messageFormatter: MessageFormatter = defaultMessageFormatter, logging: (level: LogLevel, tag: String, message: Any, throwable: Throwable?) -> Unit = defaultLogging)","description":"dev.inmo.kslog.common.DefaultKSLog.DefaultKSLog","location":"kslog/dev.inmo.kslog.common/-default-k-s-log/-default-k-s-log.html","searchKeys":["DefaultKSLog","fun DefaultKSLog(defaultTag: String, messageFormatter: MessageFormatter = defaultMessageFormatter, logging: (level: LogLevel, tag: String, message: Any, throwable: Throwable?) -> Unit = defaultLogging)","dev.inmo.kslog.common.DefaultKSLog.DefaultKSLog"]},{"name":"fun FilterKSLog(fallbackLogger: KSLog, messageFilter: MessageFilter)","description":"dev.inmo.kslog.common.filter.FilterKSLog.FilterKSLog","location":"kslog/dev.inmo.kslog.common.filter/-filter-k-s-log/-filter-k-s-log.html","searchKeys":["FilterKSLog","fun FilterKSLog(fallbackLogger: KSLog, messageFilter: MessageFilter)","dev.inmo.kslog.common.filter.FilterKSLog.FilterKSLog"]},{"name":"fun KSLog(defaultTag: String, firstLevel: LogLevel, secondLevel: LogLevel, vararg otherLevels: LogLevel, messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog","description":"dev.inmo.kslog.common.KSLog","location":"kslog/dev.inmo.kslog.common/-k-s-log.html","searchKeys":["KSLog","fun KSLog(defaultTag: String, firstLevel: LogLevel, secondLevel: LogLevel, vararg otherLevels: LogLevel, messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog","dev.inmo.kslog.common.KSLog"]},{"name":"fun KSLog(defaultTag: String, levels: Iterable, messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog","description":"dev.inmo.kslog.common.KSLog","location":"kslog/dev.inmo.kslog.common/-k-s-log.html","searchKeys":["KSLog","fun KSLog(defaultTag: String, levels: Iterable, messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog","dev.inmo.kslog.common.KSLog"]},{"name":"fun KSLog(defaultTag: String, logger: Logger, firstLevel: LogLevel, secondLevel: LogLevel, vararg otherLevels: LogLevel, messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog","description":"dev.inmo.kslog.common.KSLog","location":"kslog/dev.inmo.kslog.common/-k-s-log.html","searchKeys":["KSLog","fun KSLog(defaultTag: String, logger: Logger, firstLevel: LogLevel, secondLevel: LogLevel, vararg otherLevels: LogLevel, messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog","dev.inmo.kslog.common.KSLog"]},{"name":"fun KSLog(defaultTag: String, logger: Logger, levels: Iterable, messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog","description":"dev.inmo.kslog.common.KSLog","location":"kslog/dev.inmo.kslog.common/-k-s-log.html","searchKeys":["KSLog","fun KSLog(defaultTag: String, logger: Logger, levels: Iterable, messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog","dev.inmo.kslog.common.KSLog"]},{"name":"fun KSLog(defaultTag: String, logger: Logger, messageFormatter: MessageFormatter = defaultMessageFormatter): CallbackKSLog","description":"dev.inmo.kslog.common.KSLog","location":"kslog/dev.inmo.kslog.common/-k-s-log.html","searchKeys":["KSLog","fun KSLog(defaultTag: String, logger: Logger, messageFormatter: MessageFormatter = defaultMessageFormatter): CallbackKSLog","dev.inmo.kslog.common.KSLog"]},{"name":"fun KSLog(defaultTag: String, logger: Logger, minLoggingLevel: LogLevel = LogLevel.values().first(), messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog","description":"dev.inmo.kslog.common.KSLog","location":"kslog/dev.inmo.kslog.common/-k-s-log.html","searchKeys":["KSLog","fun KSLog(defaultTag: String, logger: Logger, minLoggingLevel: LogLevel = LogLevel.values().first(), messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog","dev.inmo.kslog.common.KSLog"]},{"name":"fun KSLog(defaultTag: String, messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog","description":"dev.inmo.kslog.common.KSLog","location":"kslog/dev.inmo.kslog.common/-k-s-log.html","searchKeys":["KSLog","fun KSLog(defaultTag: String, messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog","dev.inmo.kslog.common.KSLog"]},{"name":"fun KSLog(defaultTag: String, minLoggingLevel: LogLevel, messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog","description":"dev.inmo.kslog.common.KSLog","location":"kslog/dev.inmo.kslog.common/-k-s-log.html","searchKeys":["KSLog","fun KSLog(defaultTag: String, minLoggingLevel: LogLevel, messageFormatter: MessageFormatter = defaultMessageFormatter): KSLog","dev.inmo.kslog.common.KSLog"]},{"name":"fun KSLog.filtered(filter: MessageFilter): FilterKSLog","description":"dev.inmo.kslog.common.filter.filtered","location":"kslog/dev.inmo.kslog.common.filter/filtered.html","searchKeys":["filtered","fun KSLog.filtered(filter: MessageFilter): FilterKSLog","dev.inmo.kslog.common.filter.filtered"]},{"name":"fun TagLogger(tag: String)","description":"dev.inmo.kslog.common.TagLogger.TagLogger","location":"kslog/dev.inmo.kslog.common/-tag-logger/-tag-logger.html","searchKeys":["TagLogger","fun TagLogger(tag: String)","dev.inmo.kslog.common.TagLogger.TagLogger"]},{"name":"fun TypedKSLog(typedLoggers: Map?, KSLog>)","description":"dev.inmo.kslog.common.typed.TypedKSLog.TypedKSLog","location":"kslog/dev.inmo.kslog.common.typed/-typed-k-s-log/-typed-k-s-log.html","searchKeys":["TypedKSLog","fun TypedKSLog(typedLoggers: Map?, KSLog>)","dev.inmo.kslog.common.typed.TypedKSLog.TypedKSLog"]},{"name":"fun TypedKSLogBuilder(preset: Map?, KSLog> = emptyMap())","description":"dev.inmo.kslog.common.typed.TypedKSLogBuilder.TypedKSLogBuilder","location":"kslog/dev.inmo.kslog.common.typed/-typed-k-s-log-builder/-typed-k-s-log-builder.html","searchKeys":["TypedKSLogBuilder","fun TypedKSLogBuilder(preset: Map?, KSLog> = emptyMap())","dev.inmo.kslog.common.typed.TypedKSLogBuilder.TypedKSLogBuilder"]},{"name":"fun build(): TypedKSLog","description":"dev.inmo.kslog.common.typed.TypedKSLogBuilder.build","location":"kslog/dev.inmo.kslog.common.typed/-typed-k-s-log-builder/build.html","searchKeys":["build","fun build(): TypedKSLog","dev.inmo.kslog.common.typed.TypedKSLogBuilder.build"]},{"name":"fun default(with: KSLog): KSLog?","description":"dev.inmo.kslog.common.typed.TypedKSLogBuilder.default","location":"kslog/dev.inmo.kslog.common.typed/-typed-k-s-log-builder/default.html","searchKeys":["default","fun default(with: KSLog): KSLog?","dev.inmo.kslog.common.typed.TypedKSLogBuilder.default"]},{"name":"fun default(with: SimpleKSLogCallback): KSLog?","description":"dev.inmo.kslog.common.typed.TypedKSLogBuilder.default","location":"kslog/dev.inmo.kslog.common.typed/-typed-k-s-log-builder/default.html","searchKeys":["default","fun default(with: SimpleKSLogCallback): KSLog?","dev.inmo.kslog.common.typed.TypedKSLogBuilder.default"]},{"name":"fun on(kClass: KClass<*>?, with: KSLog): KSLog?","description":"dev.inmo.kslog.common.typed.TypedKSLogBuilder.on","location":"kslog/dev.inmo.kslog.common.typed/-typed-k-s-log-builder/on.html","searchKeys":["on","fun on(kClass: KClass<*>?, with: KSLog): KSLog?","dev.inmo.kslog.common.typed.TypedKSLogBuilder.on"]},{"name":"fun on(kClass: KClass<*>?, with: SimpleKSLogCallback): KSLog?","description":"dev.inmo.kslog.common.typed.TypedKSLogBuilder.on","location":"kslog/dev.inmo.kslog.common.typed/-typed-k-s-log-builder/on.html","searchKeys":["on","fun on(kClass: KClass<*>?, with: SimpleKSLogCallback): KSLog?","dev.inmo.kslog.common.typed.TypedKSLogBuilder.on"]},{"name":"fun taggedLogger(tagBase: Any): KSLog","description":"dev.inmo.kslog.common.taggedLogger","location":"kslog/dev.inmo.kslog.common/tagged-logger.html","searchKeys":["taggedLogger","fun taggedLogger(tagBase: Any): KSLog","dev.inmo.kslog.common.taggedLogger"]},{"name":"inline fun on(noinline with: SimpleKSLogCallback): KSLog?","description":"dev.inmo.kslog.common.typed.TypedKSLogBuilder.on","location":"kslog/dev.inmo.kslog.common.typed/-typed-k-s-log-builder/on.html","searchKeys":["on","inline fun on(noinline with: SimpleKSLogCallback): KSLog?","dev.inmo.kslog.common.typed.TypedKSLogBuilder.on"]},{"name":"inline fun on(with: KSLog): KSLog?","description":"dev.inmo.kslog.common.typed.TypedKSLogBuilder.on","location":"kslog/dev.inmo.kslog.common.typed/-typed-k-s-log-builder/on.html","searchKeys":["on","inline fun on(with: KSLog): KSLog?","dev.inmo.kslog.common.typed.TypedKSLogBuilder.on"]},{"name":"inline fun KSLog.assert(e: Throwable? = null, noinline messageBuilder: () -> Any)","description":"dev.inmo.kslog.common.assert","location":"kslog/dev.inmo.kslog.common/assert.html","searchKeys":["assert","inline fun KSLog.assert(e: Throwable? = null, noinline messageBuilder: () -> Any)","dev.inmo.kslog.common.assert"]},{"name":"inline fun KSLog.assert(message: Any, e: Throwable? = null)","description":"dev.inmo.kslog.common.assert","location":"kslog/dev.inmo.kslog.common/assert.html","searchKeys":["assert","inline fun KSLog.assert(message: Any, e: Throwable? = null)","dev.inmo.kslog.common.assert"]},{"name":"inline fun KSLog.assert(tag: String, message: Any, e: Throwable? = null)","description":"dev.inmo.kslog.common.assert","location":"kslog/dev.inmo.kslog.common/assert.html","searchKeys":["assert","inline fun KSLog.assert(tag: String, message: Any, e: Throwable? = null)","dev.inmo.kslog.common.assert"]},{"name":"inline fun KSLog.assert(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> Any)","description":"dev.inmo.kslog.common.assert","location":"kslog/dev.inmo.kslog.common/assert.html","searchKeys":["assert","inline fun KSLog.assert(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> Any)","dev.inmo.kslog.common.assert"]},{"name":"inline fun KSLog.d(e: Throwable? = null, noinline messageBuilder: () -> Any)","description":"dev.inmo.kslog.common.d","location":"kslog/dev.inmo.kslog.common/d.html","searchKeys":["d","inline fun KSLog.d(e: Throwable? = null, noinline messageBuilder: () -> Any)","dev.inmo.kslog.common.d"]},{"name":"inline fun KSLog.d(message: Any, e: Throwable? = null)","description":"dev.inmo.kslog.common.d","location":"kslog/dev.inmo.kslog.common/d.html","searchKeys":["d","inline fun KSLog.d(message: Any, e: Throwable? = null)","dev.inmo.kslog.common.d"]},{"name":"inline fun KSLog.d(tag: String, message: Any, e: Throwable? = null)","description":"dev.inmo.kslog.common.d","location":"kslog/dev.inmo.kslog.common/d.html","searchKeys":["d","inline fun KSLog.d(tag: String, message: Any, e: Throwable? = null)","dev.inmo.kslog.common.d"]},{"name":"inline fun KSLog.d(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> Any)","description":"dev.inmo.kslog.common.d","location":"kslog/dev.inmo.kslog.common/d.html","searchKeys":["d","inline fun KSLog.d(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> Any)","dev.inmo.kslog.common.d"]},{"name":"inline fun KSLog.debug(e: Throwable? = null, noinline messageBuilder: () -> Any)","description":"dev.inmo.kslog.common.debug","location":"kslog/dev.inmo.kslog.common/debug.html","searchKeys":["debug","inline fun KSLog.debug(e: Throwable? = null, noinline messageBuilder: () -> Any)","dev.inmo.kslog.common.debug"]},{"name":"inline fun KSLog.debug(message: Any, e: Throwable? = null)","description":"dev.inmo.kslog.common.debug","location":"kslog/dev.inmo.kslog.common/debug.html","searchKeys":["debug","inline fun KSLog.debug(message: Any, e: Throwable? = null)","dev.inmo.kslog.common.debug"]},{"name":"inline fun KSLog.debug(tag: String, message: Any, e: Throwable? = null)","description":"dev.inmo.kslog.common.debug","location":"kslog/dev.inmo.kslog.common/debug.html","searchKeys":["debug","inline fun KSLog.debug(tag: String, message: Any, e: Throwable? = null)","dev.inmo.kslog.common.debug"]},{"name":"inline fun KSLog.debug(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> Any)","description":"dev.inmo.kslog.common.debug","location":"kslog/dev.inmo.kslog.common/debug.html","searchKeys":["debug","inline fun KSLog.debug(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> Any)","dev.inmo.kslog.common.debug"]},{"name":"inline fun KSLog.e(e: Throwable? = null, noinline messageBuilder: () -> Any)","description":"dev.inmo.kslog.common.e","location":"kslog/dev.inmo.kslog.common/e.html","searchKeys":["e","inline fun KSLog.e(e: Throwable? = null, noinline messageBuilder: () -> Any)","dev.inmo.kslog.common.e"]},{"name":"inline fun KSLog.e(message: Any, e: Throwable? = null)","description":"dev.inmo.kslog.common.e","location":"kslog/dev.inmo.kslog.common/e.html","searchKeys":["e","inline fun KSLog.e(message: Any, e: Throwable? = null)","dev.inmo.kslog.common.e"]},{"name":"inline fun KSLog.e(tag: String, message: Any, e: Throwable? = null)","description":"dev.inmo.kslog.common.e","location":"kslog/dev.inmo.kslog.common/e.html","searchKeys":["e","inline fun KSLog.e(tag: String, message: Any, e: Throwable? = null)","dev.inmo.kslog.common.e"]},{"name":"inline fun KSLog.e(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> Any)","description":"dev.inmo.kslog.common.e","location":"kslog/dev.inmo.kslog.common/e.html","searchKeys":["e","inline fun KSLog.e(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> Any)","dev.inmo.kslog.common.e"]},{"name":"inline fun KSLog.error(e: Throwable? = null, noinline messageBuilder: () -> Any)","description":"dev.inmo.kslog.common.error","location":"kslog/dev.inmo.kslog.common/error.html","searchKeys":["error","inline fun KSLog.error(e: Throwable? = null, noinline messageBuilder: () -> Any)","dev.inmo.kslog.common.error"]},{"name":"inline fun KSLog.error(message: Any, e: Throwable? = null)","description":"dev.inmo.kslog.common.error","location":"kslog/dev.inmo.kslog.common/error.html","searchKeys":["error","inline fun KSLog.error(message: Any, e: Throwable? = null)","dev.inmo.kslog.common.error"]},{"name":"inline fun KSLog.error(tag: String, message: Any, e: Throwable? = null)","description":"dev.inmo.kslog.common.error","location":"kslog/dev.inmo.kslog.common/error.html","searchKeys":["error","inline fun KSLog.error(tag: String, message: Any, e: Throwable? = null)","dev.inmo.kslog.common.error"]},{"name":"inline fun KSLog.error(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> Any)","description":"dev.inmo.kslog.common.error","location":"kslog/dev.inmo.kslog.common/error.html","searchKeys":["error","inline fun KSLog.error(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> Any)","dev.inmo.kslog.common.error"]},{"name":"inline fun KSLog.i(e: Throwable? = null, noinline messageBuilder: () -> Any)","description":"dev.inmo.kslog.common.i","location":"kslog/dev.inmo.kslog.common/i.html","searchKeys":["i","inline fun KSLog.i(e: Throwable? = null, noinline messageBuilder: () -> Any)","dev.inmo.kslog.common.i"]},{"name":"inline fun KSLog.i(message: Any, e: Throwable? = null)","description":"dev.inmo.kslog.common.i","location":"kslog/dev.inmo.kslog.common/i.html","searchKeys":["i","inline fun KSLog.i(message: Any, e: Throwable? = null)","dev.inmo.kslog.common.i"]},{"name":"inline fun KSLog.i(tag: String, message: Any, e: Throwable? = null)","description":"dev.inmo.kslog.common.i","location":"kslog/dev.inmo.kslog.common/i.html","searchKeys":["i","inline fun KSLog.i(tag: String, message: Any, e: Throwable? = null)","dev.inmo.kslog.common.i"]},{"name":"inline fun KSLog.i(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> Any)","description":"dev.inmo.kslog.common.i","location":"kslog/dev.inmo.kslog.common/i.html","searchKeys":["i","inline fun KSLog.i(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> Any)","dev.inmo.kslog.common.i"]},{"name":"inline fun KSLog.info(e: Throwable? = null, noinline messageBuilder: () -> Any)","description":"dev.inmo.kslog.common.info","location":"kslog/dev.inmo.kslog.common/info.html","searchKeys":["info","inline fun KSLog.info(e: Throwable? = null, noinline messageBuilder: () -> Any)","dev.inmo.kslog.common.info"]},{"name":"inline fun KSLog.info(message: Any, e: Throwable? = null)","description":"dev.inmo.kslog.common.info","location":"kslog/dev.inmo.kslog.common/info.html","searchKeys":["info","inline fun KSLog.info(message: Any, e: Throwable? = null)","dev.inmo.kslog.common.info"]},{"name":"inline fun KSLog.info(tag: String, message: Any, e: Throwable? = null)","description":"dev.inmo.kslog.common.info","location":"kslog/dev.inmo.kslog.common/info.html","searchKeys":["info","inline fun KSLog.info(tag: String, message: Any, e: Throwable? = null)","dev.inmo.kslog.common.info"]},{"name":"inline fun KSLog.info(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> Any)","description":"dev.inmo.kslog.common.info","location":"kslog/dev.inmo.kslog.common/info.html","searchKeys":["info","inline fun KSLog.info(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> Any)","dev.inmo.kslog.common.info"]},{"name":"inline fun KSLog.l(level: LogLevel, e: Throwable? = null, noinline messageBuilder: () -> Any)","description":"dev.inmo.kslog.common.l","location":"kslog/dev.inmo.kslog.common/l.html","searchKeys":["l","inline fun KSLog.l(level: LogLevel, e: Throwable? = null, noinline messageBuilder: () -> Any)","dev.inmo.kslog.common.l"]},{"name":"inline fun KSLog.l(level: LogLevel, message: Any, e: Throwable? = null)","description":"dev.inmo.kslog.common.l","location":"kslog/dev.inmo.kslog.common/l.html","searchKeys":["l","inline fun KSLog.l(level: LogLevel, message: Any, e: Throwable? = null)","dev.inmo.kslog.common.l"]},{"name":"inline fun KSLog.l(level: LogLevel, tag: String, message: Any, e: Throwable? = null)","description":"dev.inmo.kslog.common.l","location":"kslog/dev.inmo.kslog.common/l.html","searchKeys":["l","inline fun KSLog.l(level: LogLevel, tag: String, message: Any, e: Throwable? = null)","dev.inmo.kslog.common.l"]},{"name":"inline fun KSLog.l(level: LogLevel, tag: String?, e: Throwable? = null, noinline messageBuilder: () -> Any)","description":"dev.inmo.kslog.common.l","location":"kslog/dev.inmo.kslog.common/l.html","searchKeys":["l","inline fun KSLog.l(level: LogLevel, tag: String?, e: Throwable? = null, noinline messageBuilder: () -> Any)","dev.inmo.kslog.common.l"]},{"name":"inline fun KSLog.log(level: LogLevel, e: Throwable? = null, noinline messageBuilder: () -> Any)","description":"dev.inmo.kslog.common.log","location":"kslog/dev.inmo.kslog.common/log.html","searchKeys":["log","inline fun KSLog.log(level: LogLevel, e: Throwable? = null, noinline messageBuilder: () -> Any)","dev.inmo.kslog.common.log"]},{"name":"inline fun KSLog.log(level: LogLevel, message: Any, e: Throwable? = null)","description":"dev.inmo.kslog.common.log","location":"kslog/dev.inmo.kslog.common/log.html","searchKeys":["log","inline fun KSLog.log(level: LogLevel, message: Any, e: Throwable? = null)","dev.inmo.kslog.common.log"]},{"name":"inline fun KSLog.log(level: LogLevel, tag: String, message: Any, e: Throwable? = null)","description":"dev.inmo.kslog.common.log","location":"kslog/dev.inmo.kslog.common/log.html","searchKeys":["log","inline fun KSLog.log(level: LogLevel, tag: String, message: Any, e: Throwable? = null)","dev.inmo.kslog.common.log"]},{"name":"inline fun KSLog.log(level: LogLevel, tag: String?, e: Throwable? = null, noinline messageBuilder: () -> Any)","description":"dev.inmo.kslog.common.log","location":"kslog/dev.inmo.kslog.common/log.html","searchKeys":["log","inline fun KSLog.log(level: LogLevel, tag: String?, e: Throwable? = null, noinline messageBuilder: () -> Any)","dev.inmo.kslog.common.log"]},{"name":"inline fun KSLog.v(e: Throwable? = null, noinline messageBuilder: () -> Any)","description":"dev.inmo.kslog.common.v","location":"kslog/dev.inmo.kslog.common/v.html","searchKeys":["v","inline fun KSLog.v(e: Throwable? = null, noinline messageBuilder: () -> Any)","dev.inmo.kslog.common.v"]},{"name":"inline fun KSLog.v(message: Any, e: Throwable? = null)","description":"dev.inmo.kslog.common.v","location":"kslog/dev.inmo.kslog.common/v.html","searchKeys":["v","inline fun KSLog.v(message: Any, e: Throwable? = null)","dev.inmo.kslog.common.v"]},{"name":"inline fun KSLog.v(tag: String, message: Any, e: Throwable? = null)","description":"dev.inmo.kslog.common.v","location":"kslog/dev.inmo.kslog.common/v.html","searchKeys":["v","inline fun KSLog.v(tag: String, message: Any, e: Throwable? = null)","dev.inmo.kslog.common.v"]},{"name":"inline fun KSLog.v(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> Any)","description":"dev.inmo.kslog.common.v","location":"kslog/dev.inmo.kslog.common/v.html","searchKeys":["v","inline fun KSLog.v(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> Any)","dev.inmo.kslog.common.v"]},{"name":"inline fun KSLog.verbose(e: Throwable? = null, noinline messageBuilder: () -> Any)","description":"dev.inmo.kslog.common.verbose","location":"kslog/dev.inmo.kslog.common/verbose.html","searchKeys":["verbose","inline fun KSLog.verbose(e: Throwable? = null, noinline messageBuilder: () -> Any)","dev.inmo.kslog.common.verbose"]},{"name":"inline fun KSLog.verbose(message: Any, e: Throwable? = null)","description":"dev.inmo.kslog.common.verbose","location":"kslog/dev.inmo.kslog.common/verbose.html","searchKeys":["verbose","inline fun KSLog.verbose(message: Any, e: Throwable? = null)","dev.inmo.kslog.common.verbose"]},{"name":"inline fun KSLog.verbose(tag: String, message: Any, e: Throwable? = null)","description":"dev.inmo.kslog.common.verbose","location":"kslog/dev.inmo.kslog.common/verbose.html","searchKeys":["verbose","inline fun KSLog.verbose(tag: String, message: Any, e: Throwable? = null)","dev.inmo.kslog.common.verbose"]},{"name":"inline fun KSLog.verbose(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> Any)","description":"dev.inmo.kslog.common.verbose","location":"kslog/dev.inmo.kslog.common/verbose.html","searchKeys":["verbose","inline fun KSLog.verbose(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> Any)","dev.inmo.kslog.common.verbose"]},{"name":"inline fun KSLog.w(e: Throwable? = null, noinline messageBuilder: () -> Any)","description":"dev.inmo.kslog.common.w","location":"kslog/dev.inmo.kslog.common/w.html","searchKeys":["w","inline fun KSLog.w(e: Throwable? = null, noinline messageBuilder: () -> Any)","dev.inmo.kslog.common.w"]},{"name":"inline fun KSLog.w(message: Any, e: Throwable? = null)","description":"dev.inmo.kslog.common.w","location":"kslog/dev.inmo.kslog.common/w.html","searchKeys":["w","inline fun KSLog.w(message: Any, e: Throwable? = null)","dev.inmo.kslog.common.w"]},{"name":"inline fun KSLog.w(tag: String, message: Any, e: Throwable? = null)","description":"dev.inmo.kslog.common.w","location":"kslog/dev.inmo.kslog.common/w.html","searchKeys":["w","inline fun KSLog.w(tag: String, message: Any, e: Throwable? = null)","dev.inmo.kslog.common.w"]},{"name":"inline fun KSLog.w(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> Any)","description":"dev.inmo.kslog.common.w","location":"kslog/dev.inmo.kslog.common/w.html","searchKeys":["w","inline fun KSLog.w(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> Any)","dev.inmo.kslog.common.w"]},{"name":"inline fun KSLog.warning(e: Throwable? = null, noinline messageBuilder: () -> Any)","description":"dev.inmo.kslog.common.warning","location":"kslog/dev.inmo.kslog.common/warning.html","searchKeys":["warning","inline fun KSLog.warning(e: Throwable? = null, noinline messageBuilder: () -> Any)","dev.inmo.kslog.common.warning"]},{"name":"inline fun KSLog.warning(message: Any, e: Throwable? = null)","description":"dev.inmo.kslog.common.warning","location":"kslog/dev.inmo.kslog.common/warning.html","searchKeys":["warning","inline fun KSLog.warning(message: Any, e: Throwable? = null)","dev.inmo.kslog.common.warning"]},{"name":"inline fun KSLog.warning(tag: String, message: Any, e: Throwable? = null)","description":"dev.inmo.kslog.common.warning","location":"kslog/dev.inmo.kslog.common/warning.html","searchKeys":["warning","inline fun KSLog.warning(tag: String, message: Any, e: Throwable? = null)","dev.inmo.kslog.common.warning"]},{"name":"inline fun KSLog.warning(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> Any)","description":"dev.inmo.kslog.common.warning","location":"kslog/dev.inmo.kslog.common/warning.html","searchKeys":["warning","inline fun KSLog.warning(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> Any)","dev.inmo.kslog.common.warning"]},{"name":"inline fun KSLog.wtf(e: Throwable? = null, noinline messageBuilder: () -> Any)","description":"dev.inmo.kslog.common.wtf","location":"kslog/dev.inmo.kslog.common/wtf.html","searchKeys":["wtf","inline fun KSLog.wtf(e: Throwable? = null, noinline messageBuilder: () -> Any)","dev.inmo.kslog.common.wtf"]},{"name":"inline fun KSLog.wtf(message: Any, e: Throwable? = null)","description":"dev.inmo.kslog.common.wtf","location":"kslog/dev.inmo.kslog.common/wtf.html","searchKeys":["wtf","inline fun KSLog.wtf(message: Any, e: Throwable? = null)","dev.inmo.kslog.common.wtf"]},{"name":"inline fun KSLog.wtf(tag: String, message: Any, e: Throwable? = null)","description":"dev.inmo.kslog.common.wtf","location":"kslog/dev.inmo.kslog.common/wtf.html","searchKeys":["wtf","inline fun KSLog.wtf(tag: String, message: Any, e: Throwable? = null)","dev.inmo.kslog.common.wtf"]},{"name":"inline fun KSLog.wtf(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> Any)","description":"dev.inmo.kslog.common.wtf","location":"kslog/dev.inmo.kslog.common/wtf.html","searchKeys":["wtf","inline fun KSLog.wtf(tag: String?, e: Throwable? = null, noinline messageBuilder: () -> Any)","dev.inmo.kslog.common.wtf"]},{"name":"inline fun buildTypedLogger(preset: Map?, KSLog> = emptyMap(), block: TypedKSLogBuilder.() -> Unit): TypedKSLog","description":"dev.inmo.kslog.common.typed.buildTypedLogger","location":"kslog/dev.inmo.kslog.common.typed/build-typed-logger.html","searchKeys":["buildTypedLogger","inline fun buildTypedLogger(preset: Map?, KSLog> = emptyMap(), block: TypedKSLogBuilder.() -> Unit): TypedKSLog","dev.inmo.kslog.common.typed.buildTypedLogger"]},{"name":"inline suspend fun KSLog.assertS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","description":"dev.inmo.kslog.common.assertS","location":"kslog/dev.inmo.kslog.common/assert-s.html","searchKeys":["assertS","inline suspend fun KSLog.assertS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","dev.inmo.kslog.common.assertS"]},{"name":"inline suspend fun KSLog.assertS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","description":"dev.inmo.kslog.common.assertS","location":"kslog/dev.inmo.kslog.common/assert-s.html","searchKeys":["assertS","inline suspend fun KSLog.assertS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","dev.inmo.kslog.common.assertS"]},{"name":"inline suspend fun KSLog.dS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","description":"dev.inmo.kslog.common.dS","location":"kslog/dev.inmo.kslog.common/d-s.html","searchKeys":["dS","inline suspend fun KSLog.dS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","dev.inmo.kslog.common.dS"]},{"name":"inline suspend fun KSLog.dS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","description":"dev.inmo.kslog.common.dS","location":"kslog/dev.inmo.kslog.common/d-s.html","searchKeys":["dS","inline suspend fun KSLog.dS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","dev.inmo.kslog.common.dS"]},{"name":"inline suspend fun KSLog.debugS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","description":"dev.inmo.kslog.common.debugS","location":"kslog/dev.inmo.kslog.common/debug-s.html","searchKeys":["debugS","inline suspend fun KSLog.debugS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","dev.inmo.kslog.common.debugS"]},{"name":"inline suspend fun KSLog.debugS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","description":"dev.inmo.kslog.common.debugS","location":"kslog/dev.inmo.kslog.common/debug-s.html","searchKeys":["debugS","inline suspend fun KSLog.debugS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","dev.inmo.kslog.common.debugS"]},{"name":"inline suspend fun KSLog.eS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","description":"dev.inmo.kslog.common.eS","location":"kslog/dev.inmo.kslog.common/e-s.html","searchKeys":["eS","inline suspend fun KSLog.eS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","dev.inmo.kslog.common.eS"]},{"name":"inline suspend fun KSLog.eS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","description":"dev.inmo.kslog.common.eS","location":"kslog/dev.inmo.kslog.common/e-s.html","searchKeys":["eS","inline suspend fun KSLog.eS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","dev.inmo.kslog.common.eS"]},{"name":"inline suspend fun KSLog.errorS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","description":"dev.inmo.kslog.common.errorS","location":"kslog/dev.inmo.kslog.common/error-s.html","searchKeys":["errorS","inline suspend fun KSLog.errorS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","dev.inmo.kslog.common.errorS"]},{"name":"inline suspend fun KSLog.errorS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","description":"dev.inmo.kslog.common.errorS","location":"kslog/dev.inmo.kslog.common/error-s.html","searchKeys":["errorS","inline suspend fun KSLog.errorS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","dev.inmo.kslog.common.errorS"]},{"name":"inline suspend fun KSLog.iS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","description":"dev.inmo.kslog.common.iS","location":"kslog/dev.inmo.kslog.common/i-s.html","searchKeys":["iS","inline suspend fun KSLog.iS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","dev.inmo.kslog.common.iS"]},{"name":"inline suspend fun KSLog.iS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","description":"dev.inmo.kslog.common.iS","location":"kslog/dev.inmo.kslog.common/i-s.html","searchKeys":["iS","inline suspend fun KSLog.iS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","dev.inmo.kslog.common.iS"]},{"name":"inline suspend fun KSLog.infoS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","description":"dev.inmo.kslog.common.infoS","location":"kslog/dev.inmo.kslog.common/info-s.html","searchKeys":["infoS","inline suspend fun KSLog.infoS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","dev.inmo.kslog.common.infoS"]},{"name":"inline suspend fun KSLog.infoS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","description":"dev.inmo.kslog.common.infoS","location":"kslog/dev.inmo.kslog.common/info-s.html","searchKeys":["infoS","inline suspend fun KSLog.infoS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","dev.inmo.kslog.common.infoS"]},{"name":"inline suspend fun KSLog.lS(level: LogLevel, e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","description":"dev.inmo.kslog.common.lS","location":"kslog/dev.inmo.kslog.common/l-s.html","searchKeys":["lS","inline suspend fun KSLog.lS(level: LogLevel, e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","dev.inmo.kslog.common.lS"]},{"name":"inline suspend fun KSLog.lS(level: LogLevel, tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","description":"dev.inmo.kslog.common.lS","location":"kslog/dev.inmo.kslog.common/l-s.html","searchKeys":["lS","inline suspend fun KSLog.lS(level: LogLevel, tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","dev.inmo.kslog.common.lS"]},{"name":"inline suspend fun KSLog.logS(level: LogLevel, e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","description":"dev.inmo.kslog.common.logS","location":"kslog/dev.inmo.kslog.common/log-s.html","searchKeys":["logS","inline suspend fun KSLog.logS(level: LogLevel, e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","dev.inmo.kslog.common.logS"]},{"name":"inline suspend fun KSLog.logS(level: LogLevel, tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","description":"dev.inmo.kslog.common.logS","location":"kslog/dev.inmo.kslog.common/log-s.html","searchKeys":["logS","inline suspend fun KSLog.logS(level: LogLevel, tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","dev.inmo.kslog.common.logS"]},{"name":"inline suspend fun KSLog.vS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","description":"dev.inmo.kslog.common.vS","location":"kslog/dev.inmo.kslog.common/v-s.html","searchKeys":["vS","inline suspend fun KSLog.vS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","dev.inmo.kslog.common.vS"]},{"name":"inline suspend fun KSLog.vS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","description":"dev.inmo.kslog.common.vS","location":"kslog/dev.inmo.kslog.common/v-s.html","searchKeys":["vS","inline suspend fun KSLog.vS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","dev.inmo.kslog.common.vS"]},{"name":"inline suspend fun KSLog.verboseS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","description":"dev.inmo.kslog.common.verboseS","location":"kslog/dev.inmo.kslog.common/verbose-s.html","searchKeys":["verboseS","inline suspend fun KSLog.verboseS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","dev.inmo.kslog.common.verboseS"]},{"name":"inline suspend fun KSLog.verboseS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","description":"dev.inmo.kslog.common.verboseS","location":"kslog/dev.inmo.kslog.common/verbose-s.html","searchKeys":["verboseS","inline suspend fun KSLog.verboseS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","dev.inmo.kslog.common.verboseS"]},{"name":"inline suspend fun KSLog.wS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","description":"dev.inmo.kslog.common.wS","location":"kslog/dev.inmo.kslog.common/w-s.html","searchKeys":["wS","inline suspend fun KSLog.wS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","dev.inmo.kslog.common.wS"]},{"name":"inline suspend fun KSLog.wS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","description":"dev.inmo.kslog.common.wS","location":"kslog/dev.inmo.kslog.common/w-s.html","searchKeys":["wS","inline suspend fun KSLog.wS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","dev.inmo.kslog.common.wS"]},{"name":"inline suspend fun KSLog.warningS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","description":"dev.inmo.kslog.common.warningS","location":"kslog/dev.inmo.kslog.common/warning-s.html","searchKeys":["warningS","inline suspend fun KSLog.warningS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","dev.inmo.kslog.common.warningS"]},{"name":"inline suspend fun KSLog.warningS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","description":"dev.inmo.kslog.common.warningS","location":"kslog/dev.inmo.kslog.common/warning-s.html","searchKeys":["warningS","inline suspend fun KSLog.warningS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","dev.inmo.kslog.common.warningS"]},{"name":"inline suspend fun KSLog.wtfS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","description":"dev.inmo.kslog.common.wtfS","location":"kslog/dev.inmo.kslog.common/wtf-s.html","searchKeys":["wtfS","inline suspend fun KSLog.wtfS(e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","dev.inmo.kslog.common.wtfS"]},{"name":"inline suspend fun KSLog.wtfS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","description":"dev.inmo.kslog.common.wtfS","location":"kslog/dev.inmo.kslog.common/wtf-s.html","searchKeys":["wtfS","inline suspend fun KSLog.wtfS(tag: String?, e: Throwable? = null, noinline messageBuilder: suspend () -> Any)","dev.inmo.kslog.common.wtfS"]},{"name":"interface KSLog","description":"dev.inmo.kslog.common.KSLog","location":"kslog/dev.inmo.kslog.common/-k-s-log/index.html","searchKeys":["KSLog","interface KSLog","dev.inmo.kslog.common.KSLog"]},{"name":"object Companion : KSLog","description":"dev.inmo.kslog.common.KSLog.Companion","location":"kslog/dev.inmo.kslog.common/-k-s-log/-companion/index.html","searchKeys":["Companion","object Companion : KSLog","dev.inmo.kslog.common.KSLog.Companion"]},{"name":"open fun performLog(level: LogLevel, message: Any, throwable: Throwable?)","description":"dev.inmo.kslog.common.KSLog.performLog","location":"kslog/dev.inmo.kslog.common/-k-s-log/perform-log.html","searchKeys":["performLog","open fun performLog(level: LogLevel, message: Any, throwable: Throwable?)","dev.inmo.kslog.common.KSLog.performLog"]},{"name":"open fun performLog(level: LogLevel, tag: String?, throwable: Throwable?, messageBuilder: () -> Any)","description":"dev.inmo.kslog.common.KSLog.performLog","location":"kslog/dev.inmo.kslog.common/-k-s-log/perform-log.html","searchKeys":["performLog","open fun performLog(level: LogLevel, tag: String?, throwable: Throwable?, messageBuilder: () -> Any)","dev.inmo.kslog.common.KSLog.performLog"]},{"name":"open override fun performLog(level: LogLevel, message: Any, throwable: Throwable?)","description":"dev.inmo.kslog.common.KSLog.Companion.performLog","location":"kslog/dev.inmo.kslog.common/-k-s-log/-companion/perform-log.html","searchKeys":["performLog","open override fun performLog(level: LogLevel, message: Any, throwable: Throwable?)","dev.inmo.kslog.common.KSLog.Companion.performLog"]},{"name":"open override fun performLog(level: LogLevel, message: Any, throwable: Throwable?)","description":"dev.inmo.kslog.common.filter.FilterKSLog.performLog","location":"kslog/dev.inmo.kslog.common.filter/-filter-k-s-log/perform-log.html","searchKeys":["performLog","open override fun performLog(level: LogLevel, message: Any, throwable: Throwable?)","dev.inmo.kslog.common.filter.FilterKSLog.performLog"]},{"name":"open override fun performLog(level: LogLevel, message: Any, throwable: Throwable?)","description":"dev.inmo.kslog.common.typed.TypedKSLog.performLog","location":"kslog/dev.inmo.kslog.common.typed/-typed-k-s-log/perform-log.html","searchKeys":["performLog","open override fun performLog(level: LogLevel, message: Any, throwable: Throwable?)","dev.inmo.kslog.common.typed.TypedKSLog.performLog"]},{"name":"open override fun performLog(level: LogLevel, tag: String?, message: Any, throwable: Throwable?)","description":"dev.inmo.kslog.common.CallbackKSLog.performLog","location":"kslog/dev.inmo.kslog.common/-callback-k-s-log/perform-log.html","searchKeys":["performLog","open override fun performLog(level: LogLevel, tag: String?, message: Any, throwable: Throwable?)","dev.inmo.kslog.common.CallbackKSLog.performLog"]},{"name":"open override fun performLog(level: LogLevel, tag: String?, message: Any, throwable: Throwable?)","description":"dev.inmo.kslog.common.DefaultKSLog.performLog","location":"kslog/dev.inmo.kslog.common/-default-k-s-log/perform-log.html","searchKeys":["performLog","open override fun performLog(level: LogLevel, tag: String?, message: Any, throwable: Throwable?)","dev.inmo.kslog.common.DefaultKSLog.performLog"]},{"name":"open override fun performLog(level: LogLevel, tag: String?, message: Any, throwable: Throwable?)","description":"dev.inmo.kslog.common.KSLog.Companion.performLog","location":"kslog/dev.inmo.kslog.common/-k-s-log/-companion/perform-log.html","searchKeys":["performLog","open override fun performLog(level: LogLevel, tag: String?, message: Any, throwable: Throwable?)","dev.inmo.kslog.common.KSLog.Companion.performLog"]},{"name":"open override fun performLog(level: LogLevel, tag: String?, message: Any, throwable: Throwable?)","description":"dev.inmo.kslog.common.TagLogger.performLog","location":"kslog/dev.inmo.kslog.common/-tag-logger/perform-log.html","searchKeys":["performLog","open override fun performLog(level: LogLevel, tag: String?, message: Any, throwable: Throwable?)","dev.inmo.kslog.common.TagLogger.performLog"]},{"name":"open override fun performLog(level: LogLevel, tag: String?, message: Any, throwable: Throwable?)","description":"dev.inmo.kslog.common.filter.FilterKSLog.performLog","location":"kslog/dev.inmo.kslog.common.filter/-filter-k-s-log/perform-log.html","searchKeys":["performLog","open override fun performLog(level: LogLevel, tag: String?, message: Any, throwable: Throwable?)","dev.inmo.kslog.common.filter.FilterKSLog.performLog"]},{"name":"open override fun performLog(level: LogLevel, tag: String?, message: Any, throwable: Throwable?)","description":"dev.inmo.kslog.common.typed.TypedKSLog.performLog","location":"kslog/dev.inmo.kslog.common.typed/-typed-k-s-log/perform-log.html","searchKeys":["performLog","open override fun performLog(level: LogLevel, tag: String?, message: Any, throwable: Throwable?)","dev.inmo.kslog.common.typed.TypedKSLog.performLog"]},{"name":"open override fun performLog(level: LogLevel, tag: String?, throwable: Throwable?, messageBuilder: () -> Any)","description":"dev.inmo.kslog.common.DefaultKSLog.performLog","location":"kslog/dev.inmo.kslog.common/-default-k-s-log/perform-log.html","searchKeys":["performLog","open override fun performLog(level: LogLevel, tag: String?, throwable: Throwable?, messageBuilder: () -> Any)","dev.inmo.kslog.common.DefaultKSLog.performLog"]},{"name":"open override fun performLog(level: LogLevel, tag: String?, throwable: Throwable?, messageBuilder: () -> Any)","description":"dev.inmo.kslog.common.KSLog.Companion.performLog","location":"kslog/dev.inmo.kslog.common/-k-s-log/-companion/perform-log.html","searchKeys":["performLog","open override fun performLog(level: LogLevel, tag: String?, throwable: Throwable?, messageBuilder: () -> Any)","dev.inmo.kslog.common.KSLog.Companion.performLog"]},{"name":"open override fun performLog(level: LogLevel, tag: String?, throwable: Throwable?, messageBuilder: () -> Any)","description":"dev.inmo.kslog.common.filter.FilterKSLog.performLog","location":"kslog/dev.inmo.kslog.common.filter/-filter-k-s-log/perform-log.html","searchKeys":["performLog","open override fun performLog(level: LogLevel, tag: String?, throwable: Throwable?, messageBuilder: () -> Any)","dev.inmo.kslog.common.filter.FilterKSLog.performLog"]},{"name":"open override fun performLog(level: LogLevel, tag: String?, throwable: Throwable?, messageBuilder: () -> Any)","description":"dev.inmo.kslog.common.typed.TypedKSLog.performLog","location":"kslog/dev.inmo.kslog.common.typed/-typed-k-s-log/perform-log.html","searchKeys":["performLog","open override fun performLog(level: LogLevel, tag: String?, throwable: Throwable?, messageBuilder: () -> Any)","dev.inmo.kslog.common.typed.TypedKSLog.performLog"]},{"name":"open suspend fun performLogS(level: LogLevel, tag: String?, throwable: Throwable?, messageBuilder: suspend () -> Any)","description":"dev.inmo.kslog.common.KSLog.performLogS","location":"kslog/dev.inmo.kslog.common/-k-s-log/perform-log-s.html","searchKeys":["performLogS","open suspend fun performLogS(level: LogLevel, tag: String?, throwable: Throwable?, messageBuilder: suspend () -> Any)","dev.inmo.kslog.common.KSLog.performLogS"]},{"name":"open suspend override fun performLogS(level: LogLevel, tag: String?, throwable: Throwable?, messageBuilder: suspend () -> Any)","description":"dev.inmo.kslog.common.DefaultKSLog.performLogS","location":"kslog/dev.inmo.kslog.common/-default-k-s-log/perform-log-s.html","searchKeys":["performLogS","open suspend override fun performLogS(level: LogLevel, tag: String?, throwable: Throwable?, messageBuilder: suspend () -> Any)","dev.inmo.kslog.common.DefaultKSLog.performLogS"]},{"name":"open suspend override fun performLogS(level: LogLevel, tag: String?, throwable: Throwable?, messageBuilder: suspend () -> Any)","description":"dev.inmo.kslog.common.KSLog.Companion.performLogS","location":"kslog/dev.inmo.kslog.common/-k-s-log/-companion/perform-log-s.html","searchKeys":["performLogS","open suspend override fun performLogS(level: LogLevel, tag: String?, throwable: Throwable?, messageBuilder: suspend () -> Any)","dev.inmo.kslog.common.KSLog.Companion.performLogS"]},{"name":"open suspend override fun performLogS(level: LogLevel, tag: String?, throwable: Throwable?, messageBuilder: suspend () -> Any)","description":"dev.inmo.kslog.common.filter.FilterKSLog.performLogS","location":"kslog/dev.inmo.kslog.common.filter/-filter-k-s-log/perform-log-s.html","searchKeys":["performLogS","open suspend override fun performLogS(level: LogLevel, tag: String?, throwable: Throwable?, messageBuilder: suspend () -> Any)","dev.inmo.kslog.common.filter.FilterKSLog.performLogS"]},{"name":"open suspend override fun performLogS(level: LogLevel, tag: String?, throwable: Throwable?, messageBuilder: suspend () -> Any)","description":"dev.inmo.kslog.common.typed.TypedKSLog.performLogS","location":"kslog/dev.inmo.kslog.common.typed/-typed-k-s-log/perform-log-s.html","searchKeys":["performLogS","open suspend override fun performLogS(level: LogLevel, tag: String?, throwable: Throwable?, messageBuilder: suspend () -> Any)","dev.inmo.kslog.common.typed.TypedKSLog.performLogS"]},{"name":"operator fun KSLog.invoke(performLogCallback: (level: LogLevel, tag: String?, message: Any, throwable: Throwable?) -> Unit): CallbackKSLog","description":"dev.inmo.kslog.common.invoke","location":"kslog/dev.inmo.kslog.common/invoke.html","searchKeys":["invoke","operator fun KSLog.invoke(performLogCallback: (level: LogLevel, tag: String?, message: Any, throwable: Throwable?) -> Unit): CallbackKSLog","dev.inmo.kslog.common.invoke"]},{"name":"val Any.logTag: String","description":"dev.inmo.kslog.common.logTag","location":"kslog/dev.inmo.kslog.common/log-tag.html","searchKeys":["logTag","val Any.logTag: String","dev.inmo.kslog.common.logTag"]},{"name":"val Any.logger: KSLog","description":"dev.inmo.kslog.common.logger","location":"kslog/dev.inmo.kslog.common/logger.html","searchKeys":["logger","val Any.logger: KSLog","dev.inmo.kslog.common.logger"]},{"name":"val defaultMessageFormatter: MessageFormatter","description":"dev.inmo.kslog.common.defaultMessageFormatter","location":"kslog/dev.inmo.kslog.common/default-message-formatter.html","searchKeys":["defaultMessageFormatter","val defaultMessageFormatter: MessageFormatter","dev.inmo.kslog.common.defaultMessageFormatter"]},{"name":"val tag: String","description":"dev.inmo.kslog.common.TagLogger.tag","location":"kslog/dev.inmo.kslog.common/-tag-logger/tag.html","searchKeys":["tag","val tag: String","dev.inmo.kslog.common.TagLogger.tag"]},{"name":"value class TagLogger(val tag: String) : KSLog","description":"dev.inmo.kslog.common.TagLogger","location":"kslog/dev.inmo.kslog.common/-tag-logger/index.html","searchKeys":["TagLogger","value class TagLogger(val tag: String) : KSLog","dev.inmo.kslog.common.TagLogger"]},{"name":"var default: KSLog","description":"dev.inmo.kslog.common.KSLog.Companion.default","location":"kslog/dev.inmo.kslog.common/-k-s-log/-companion/default.html","searchKeys":["default","var default: KSLog","dev.inmo.kslog.common.KSLog.Companion.default"]}]