Skip to content

Commit

Permalink
debut -> trace for RdCoroutineHost overridden messages
Browse files Browse the repository at this point in the history
  • Loading branch information
Iliya-usov committed Nov 13, 2023
1 parent 7525301 commit 63c9606
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ open class RdCoroutineScope : CoroutineScope {
if (!currentHost.compareAndSet(null, host))
throw IllegalStateException("Could not override RdCoroutineHost")

logger.debug { "RdCoroutineHost has been overridden" }
logger.trace { "RdCoroutineHost has been overridden" }
host.coroutineContext.job.invokeOnCompletion {
currentHost.getAndSet(null)
logger.debug { "RdCoroutineHost has been reset" }
logger.trace { "RdCoroutineHost has been reset" }
}
}
}
Expand Down

0 comments on commit 63c9606

Please sign in to comment.