Hello,
Congratulations on this new release!
Are there examples of how to configure LOGBACK-540 (filtering out selected stack trace frames), specifically using the LogBack API (not just from a configuration file)? I've looked at
https://github.com/qos-ch/logback/commit/a71b2902cff5911bbb16d4e2950476b0dfeebeee and it's not particularly obvious how to add (and configure) ThrowableProxyConverter into a running application (the associated test case just shows how it is used with a specific event).
For example, the following call in a Groovy application script (not talking about Groovy configuration):
log.debug "message with ${interpolation}, in groovy code"
...will be logged as debug$call and not identify the script, because "debug" used in this way passes through Groovy's generated code, and that's what LogBack is recording. I'd like to be able to configure LogBack to filter out such "generated" code (this is just an example, we have other cases).
Thanks,