We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
slf4j 2.x added a new fluent api that allows adding key value pairs to log events. For example:
logger.atDebug().setMessage("Temperature changed.").addKeyValue("oldT", oldT).addKeyValue("newT", newT).log();
Support outputting these key value pairs in the encoders provided by logstash-logback-encoder. Exactly how is TBD.
The text was updated successfully, but these errors were encountered:
Merge pull request #954 from mmienko/support-key-value-fluent-api
16c92fc
Support key values from slf4j's fluent api Fixes #946
Successfully merging a pull request may close this issue.
slf4j 2.x added a new fluent api that allows adding key value pairs to log events. For example:
Support outputting these key value pairs in the encoders provided by logstash-logback-encoder. Exactly how is TBD.
The text was updated successfully, but these errors were encountered: