Skip to content

Commit 9c7d8d3

Browse files
updated log message start
1 parent 61a88bb commit 9c7d8d3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

core/koin-core/src/commonMain/kotlin/org/koin/core/Koin.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,6 +329,6 @@ class Koin {
329329
val duration = measureDuration {
330330
instanceRegistry.createAllEagerInstances()
331331
}
332-
logger.debug("Eager instances created in $duration ms")
332+
logger.debug("Koin created eager instances in $duration ms")
333333
}
334334
}

core/koin-core/src/commonMain/kotlin/org/koin/core/KoinApplication.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ class KoinApplication private constructor() {
6060
if (koin.logger.isAt(Level.INFO)) {
6161
val duration = measureDuration { loadModules(modules) }
6262
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")
6464
} else {
6565
loadModules(modules)
6666
}

0 commit comments

Comments
 (0)