Skip to content

Commit

Permalink
updated log message start
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaudgiuliani committed Sep 11, 2023
1 parent 61a88bb commit 9c7d8d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/koin-core/src/commonMain/kotlin/org/koin/core/Koin.kt
Expand Up @@ -329,6 +329,6 @@ class Koin {
val duration = measureDuration {
instanceRegistry.createAllEagerInstances()
}
logger.debug("Eager instances created in $duration ms")
logger.debug("Koin created eager instances in $duration ms")
}
}
Expand Up @@ -60,7 +60,7 @@ class KoinApplication private constructor() {
if (koin.logger.isAt(Level.INFO)) {
val duration = measureDuration { loadModules(modules) }
val count = koin.instanceRegistry.size()
koin.logger.display(Level.INFO, "loaded $count definitions in $duration ms")
koin.logger.display(Level.INFO, "Koin started with $count definitions in $duration ms")
} else {
loadModules(modules)
}
Expand Down

0 comments on commit 9c7d8d3

Please sign in to comment.