terse-logback icon indicating copy to clipboard operation
terse-logback copied to clipboard

Structured Logging, Tracing, and Observability with Logback

Results 6 terse-logback issues
Sort by recently updated
recently updated
newest added

If there are errors or warnings, the appender should be able to up the logging level for the logger (or package) to DEBUG, for example.

**Is your feature request related to a problem? Please describe.** We have been using structured logging directly to console for quite some time for our kubernetes JVMs. However it seems...

Currently in the JDK, an failed assert will throw an `AssertionError`. Because the default uncaught exception handler doesn't have any kind of handling of `AssertionError`, this means that there's no...

In the situation where there's an `e.printStackTrace()` we should be able to use bytebuddy to rewrite this to something more like: ```java Logger logger = LoggerFactory.getLogger(this.getClass()); logger.error(e.getMessage(), e); ``` This...

**Describe the bug** When using censors, if multiple are applied to `net.logstash.logback.encoder.LogstashEncoder` using `com.tersesystems.logback.censor.CensoringJsonGeneratorDecorator`, the last `censor-ref` "wins" and the others are ignored. **To Reproduce** - I created [a fairly...