logging-interceptor
logging-interceptor copied to clipboard
CDI interceptor for logging to slf4j
This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.[View this repository on the Mend.io Web Portal](https://developer.mend.io/github/t1/logging-interceptor). ## Config Migration Needed - [ ]...
Would it be possible for logging-interceptor to produce an injectable JUL Logger for use with APIs like: https://github.com/jersey/jersey/blob/master/core-common/src/main/java/org/glassfish/jersey/logging/LoggingFeature.java#L189 ?
I don't know how this would be done, but some kind of exception logger for uncaught exceptions would be handy. I think DeltaSpike has something for handling exceptions globally, but...
Logging parameters is really handy and encourages writing good `toString()` methods, but when the parameters are very large collections of these objects, logging-interceptor `toString()`s each object. It would be nice...
If the logging-interceptor could be installed as a JBoss module, the dependency could be set to provided and the war would be smaller (e.g. deploy faster).
E.g., if a parameter is a `List`, the json output should be an array of strings. And if it's an object with parameters, it should be a json object with...
If a class is annotated, the methods inherited from Object should not be logged. If this is required (which would be a quite strange use case), method level annotations should...
[joda-convert](http://www.joda.org/joda-convert/index.html) has a good coverage of basic converters, and it's easy to extend and proven.