Hi there, is there way to set a log-level not per ...
# kotlin-logging
h
Hi there, is there way to set a log-level not per class/package but on a per instance level when using common logging APIs (slf4j, logback, kotlin-logging)?
o
the easiest way that I know of is with different logger names (you can give each instance a different name)
maybe also custom appenders can do that, but I think it will be more complicated
h
Thanks @oshai for the pointers. I'll try that.