Update koin to v3.3.2

This commit is contained in:
Renovate Bot 2023-01-02 10:00:11 +00:00 committed by Nite
parent 20e9803ebf
commit 2e9f591ab0
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ swipeRefresh = "1.1.0"
retrofit = "2.9.0"
jackson = "2.14.1"
okhttp = "4.10.0"
koin = "3.2.2"
koin = "3.3.2"
picasso = "2.8"
junit4 = "4.13.2"

View File

@ -10,7 +10,7 @@ import timber.log.Timber
*/
class TimberKoinLogger(level: Level = Level.INFO) : Logger(level) {
override fun log(level: Level, msg: MESSAGE) {
override fun display(level: Level, msg: MESSAGE) {
if (this.level <= level) {
logOnLevel(msg, level)
}