Make the corresponding SLF4J method for @Loggable chooseable
Iam currently working on an own slf4j implementation where it would be useful to get, for example, the invocation time of a method produced by @Loggable in an argument that are passed over to the slf4j-api.
As far as i see, the LogHelper of jcabi invokes constantly the single String argument methods with the respective LogLevel of the slf4j-Logger.
My current workaround is to parse the string inside of the Logger implementation to check wether it contains the Log-Messages produced by @Loggable and transform it in my format.
@yegor256 please do something about this issue
@jondoe1337 I see the problem, but how do you think we can do that? how can we make that method configurable? technically
How about doing Reflection with a given class/method String parameter that it set in the annotation @Loggable?