Skip to content

Commit

Permalink
fix: Android debug messages were logged as verbose.
Browse files Browse the repository at this point in the history
  • Loading branch information
romainbsl committed Feb 10, 2024
1 parent 304afc6 commit 24ca444
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ plugins {

allprojects {
group = "org.kodein.log"
version = "1.1.1"
version = "1.1.2"
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public val androidFrontend: LogFrontend = LogFrontend { tag ->
Log.i(tag.toString(), message, entry.ex)
}
Logger.Level.DEBUG -> {
Log.v(tag.toString(), message, entry.ex)
Log.d(tag.toString(), message, entry.ex)
}
}
}
Expand Down

0 comments on commit 24ca444

Please sign in to comment.