What is the most idiomatic way to define a logger ...
# announcements
s
What is the most idiomatic way to define a logger on a class? In java we'd use a
static
field and I understand that you can use a
companion object
along with
@JvmStatic
but I don't like the looks of that at all.