mirror of
https://github.com/InsanusMokrassar/KSLog.git
synced 2025-10-27 09:30:04 +00:00
Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 669afe481d | |||
| 42db9da058 | |||
| 72de26adac | |||
| 4b47a4e817 | |||
| 785ab59519 | |||
| a4f2562690 | |||
| 777ae44da5 | |||
| 28d61a7b7c |
@@ -1,5 +1,13 @@
|
||||
# Changelog
|
||||
|
||||
## 0.5.1
|
||||
|
||||
* New property `defaultMessageFormatterWithErrorPrint` for messages format with errors
|
||||
|
||||
## 0.5.0
|
||||
|
||||
* `Kotlin`: `1.7.10`
|
||||
|
||||
## 0.4.2
|
||||
|
||||
* Add `setDefaultKSLog` and `addDefaultKSLog`
|
||||
|
||||
@@ -9,5 +9,5 @@ android.enableJetifier=true
|
||||
# Project data
|
||||
|
||||
group=dev.inmo
|
||||
version=0.4.2
|
||||
android_code_version=12
|
||||
version=0.5.1
|
||||
android_code_version=14
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
[versions]
|
||||
|
||||
kotlin = "1.6.21"
|
||||
kotlin-gradle-plugin = "7.0.4"
|
||||
kotlin = "1.7.10"
|
||||
kotlin-gradle-plugin = "7.2.2"
|
||||
|
||||
dexcount = "3.1.0"
|
||||
junit_version = "4.12"
|
||||
test_ext_junit_version = "1.1.2"
|
||||
espresso_core = "3.3.0"
|
||||
test_ext_junit_version = "1.1.3"
|
||||
espresso_core = "3.4.0"
|
||||
|
||||
android-minSdk = "21"
|
||||
android-compileSdk = "32"
|
||||
|
||||
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -1,5 +1,5 @@
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
|
||||
@@ -5,4 +5,4 @@ typealias MessageFormatter = (l: LogLevel, t: String?, m: Any, Throwable?) -> St
|
||||
inline fun MessageFormatter(noinline formatter: MessageFormatter) = formatter
|
||||
typealias MessageFilter = (l: LogLevel, t: String?, Throwable?) -> Boolean
|
||||
val defaultMessageFormatter: MessageFormatter = { l, t, m, _ -> "[$l] ${t ?.let { "$it " } ?: ""}- $m" }
|
||||
|
||||
val defaultMessageFormatterWithErrorPrint: MessageFormatter = { l, t, m, e -> "[$l] ${t ?.let { "$it " } ?: ""}- $m${e ?.let { ": ${it.stackTraceToString()}" } ?: ""}" }
|
||||
|
||||
Reference in New Issue
Block a user