Why are log functions not inline btw? If they were...
# kotlin-logging
n
Why are log functions not inline btw? If they were i would not need weird workarounds for suspending functions..
o
Inline functions don't play well with inheritance. But the main issue is line numbers. See https://github.com/MicroUtils/kotlin-logging/issues/34
n
it seems like i may need to make a local build experimenting around with making them inline functions and seeing how well it works for my usecase
its probably going to be a bit of a mess with
expect
,
actual
getting in the way