jvz opened a new issue, #29:
URL: https://github.com/apache/logging-log4j-kotlin/issues/29
Analogous to the extension function `T.logger()` which constructs a logger
using the class of `T`, an extension property `T.logger` should be added for an
alternative to using the `Logging` mixin. The general change is fairly simple:
```kt
inline val <reified T> T.logger: KotlinLogger
get() = cachedLoggerOf(T::class.java)
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]