Anyone have a recommendation for what I should do for logging? I looked at kotlin-logging but I couldn't figure out how to log to a file / do configuration, etc?
as a fun exercise, i wrote slf4k
https://github.com/nfrankel/slf4k
it’s just a wrapper around slf4j
the benefit is that it’s lazy
the string expression is only evaluated if the log level matches
(just as for log4j2)