Kenneth
02/24/2023, 8:49 AMLoggerFactory.getLogger(SomeService::class.java)
in Kotlin where I won't need to specify the exact class?CLOVIS
02/24/2023, 8:51 AMval logger = KotlinLogging.logger {}
), my Pedestal library lets you pass an object directly (val logger = loggerFor(this)
)Chris Lee
02/24/2023, 8:52 AMKenneth
02/24/2023, 8:58 AMAdam S
02/24/2023, 9:37 AMKenneth
02/24/2023, 10:10 AMephemient
02/25/2023, 4:31 AMlogger()
extension function without having to explicitly call it with <>
etc.Humphrey
02/25/2023, 6:42 PM