flogger
flogger copied to clipboard
A Fluent Logging API for Java
Doesn't this style of logging api incur the cost of string creation, even when the logger is off ? I haven't looked at the byte code, but I'm wondering what...
Hi Team, Is it possible to publish architecture diagram for this library? I want to understand how various components like rate limiter, filter are related to each other. Also it...
Flogger dependency management could be made easier and less error prone with a [maven Bill of Materials](https://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html#bill-of-materials-bom-poms)
Hi Floggers :) I have some questions in relation to extending Flogger, while using Logback as the logging backend, and the resulting JSON log statement output. This seemed like the...
Hi, Log4j2 provides a useful ThreadContext class and even more useful CloseableThreadContext. ``` try (CloseableThreadContext.Instance ignored = CloseableThreadContext.put("key", "value")) { log.atInfo().log("My message"); } ``` The entries will be logged if...
I just want to know details of its advantage, where to get the information?
As per https://github.com/apache/logging-log4j2/pull/629/files, given that Flogger is a "library" (itself for logging, but whatever) and not an "application", given that Log4j v1 [has been officially unmaintained for many years](https://blogs.apache.org/foundation/entry/apache_logging_services_project_announces), and...
Hi all, I have been performing some performance testing within our application that utilises Flogger (log4j2 backend) as our logging framework. I have found that when performing logging (arguably excessive...
From the [flogger documentation](https://google.github.io/flogger/):  It says: > All code that uses flogger should depend on com.google.flogger:flogger: and com.google.flogger:flogger-system-backend:. This is strange from my experience of slf4j and logback. If...
After upgrade from flogger 0.6 to flogger 0.7.1 I am observing an unexpected suffix in our log messages. We are using flogger-system-backend and flogger-grpc-context maven dependencies. We are using context...