File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
core/koin-core/src/commonMain/kotlin/org/koin/core Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -329,6 +329,6 @@ class Koin {
329
329
val duration = measureDuration {
330
330
instanceRegistry.createAllEagerInstances()
331
331
}
332
- logger.debug(" Eager instances created in $duration ms" )
332
+ logger.debug(" Koin created eager instances in $duration ms" )
333
333
}
334
334
}
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ class KoinApplication private constructor() {
60
60
if (koin.logger.isAt(Level .INFO )) {
61
61
val duration = measureDuration { loadModules(modules) }
62
62
val count = koin.instanceRegistry.size()
63
- koin.logger.display(Level .INFO , " loaded $count definitions in $duration ms" )
63
+ koin.logger.display(Level .INFO , " Koin started with $count definitions in $duration ms" )
64
64
} else {
65
65
loadModules(modules)
66
66
}
You can’t perform that action at this time.
0 commit comments