Skip to content

Commit

Permalink
Pass scope creation logs from warning to debug - Fix #1680
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaudgiuliani committed Nov 8, 2023
1 parent 38f930e commit 2fd9907
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class ScopeRegistry(private val _koin: Koin) {
internal fun createScope(scopeId: ScopeID, qualifier: Qualifier, source: Any? = null): Scope {
_koin.logger.debug("|- (+) Scope - id:'$scopeId' q:$qualifier")
if (!_scopeDefinitions.contains(qualifier)) {
_koin.logger.warn("| Scope '$qualifier' not defined. Creating it ...")
_koin.logger.debug("| Scope '$qualifier' not defined. Creating it ...")
_scopeDefinitions.add(qualifier)
}
if (_scopes.contains(scopeId)) {
Expand Down

0 comments on commit 2fd9907

Please sign in to comment.