serilog/serilog-sinks-opentelemetry

Format message templates without old-style quoting

nblumhardt opened this issue · 0 comments

The sink currently uses LogEvent.RenderMessage() to render messages. This includes quotes around string values, e.g. Hello {Name}! becomes Hello "world"!.

Most sinks have moved away from this one way or another, towards the modern "literal" format (which also uses JSON encoding for embedded structured data). We should do the same here.