update of gradle wrapper and publishing scripts

This commit is contained in:
2023-09-20 21:39:01 +06:00
parent 7fbf80a52a
commit 8613f350e3
10 changed files with 1938 additions and 10 deletions

View File

@@ -1 +1 @@
<manifest package="dev.inmo.kslog"/>
<manifest/>

View File

@@ -32,6 +32,10 @@ interface KSLog {
companion object : KSLog {
private var defaultLogger: KSLog? = null
/**
* Default logger used in case you are trying to use [KSLog] as a receiver for extensions like [info]
*/
var default: KSLog
get() {
return defaultLogger ?: KSLog("app").also {