Replies: 3 comments 4 replies
-
This scenario (custom attributes) looks interesting: #673. Although I would make them optional with a default of nullptr. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Also custom attributes would only make sense with a custom sink |
Beta Was this translation helpful? Give feedback.
0 replies
-
There are PRs with similar features #2907, #3128, but none that refer to values in the sink. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm implementing a lower layer API (DLT) that wants a unique context tag independent of the message. The DLT API requires two logical calls to set:
Upper level user would be able to set context tag ad-hoc, independent of message. I'm currently using
callback_logger_mt
to shim the DLT message API.Aside from encoding message with a unique token for the
context tag
, is there a suggested way to do this with the spdlog api?My current implementation:
https://github.com/toyota-connected/ivi-homescreen/tree/v2.0/shell/logging
Reference:
https://covesa.github.io/dlt-daemon
Beta Was this translation helpful? Give feedback.
All reactions