You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
whereas Serilog and NLog treat them specially so that they're rendered as KeyValuePair's.
Describe the solution you'd like
In the context of this library, it would be great to be able to see the scope properties that are attached to log events. Although those other libraries go quite a long way to try and map scope objects to various structures, handling only the case above would be enough to support that use case in libraries.
Perhaps they could be rendered as:
=> Key: Value
Describe alternatives you've considered
You could take a dependency on Serilog for example and use this sink to emit structure, but it would be nice to have that built in to this library.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Hi there!
Scope types of
IEnumerable<KeyValuePair<string, object>>
are currently being rendered as:whereas Serilog and NLog treat them specially so that they're rendered as KeyValuePair's.
Describe the solution you'd like
In the context of this library, it would be great to be able to see the scope properties that are attached to log events. Although those other libraries go quite a long way to try and map scope objects to various structures, handling only the case above would be enough to support that use case in libraries.
Perhaps they could be rendered as:
Describe alternatives you've considered
You could take a dependency on Serilog for example and use this sink to emit structure, but it would be nice to have that built in to this library.
The text was updated successfully, but these errors were encountered: