Quick question. I am migrating to 5.0 and I want t...
# kotlin-logging
p
Quick question. I am migrating to 5.0 and I want to make sure I am not missing something. In previous versions, one could create a logger with
companion object : KLogging()
It appears that with 5.0, one has to explicitly create a logger value with
val logger = KotlinLogging.logger {}
. Is that correct?