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
When using zio.logging.consoleLogger and apply multiple spans or multiple annotations to a single log line, the list of attributes ends up as one big string without whitespace separation (as if using mkString instead of mkString(" ")). The same holds for the spans.
e.g.
timestamp=2023-07-25T14:06:15+0200 level=INFO fiberId=zio-fiber-6 message=INFO IS ON name=com.acme.Main.run infospan=1msanotherspan=1ms
timestamp=2023-07-25T14:06:15+0200 level=INFO fiberId=zio-fiber-6 message=LOG AT DEFAULT LEVEL name=com.acme.Main.run annotation1=value1annotation2=value2 myspan=0ms
(Also I expected double qoutes around the log messages (which contain spaces). I did see that case handled in the code, but I would have to debug why that isn't happening).
The text was updated successfully, but these errors were encountered:
When using
zio.logging.consoleLogger
and apply multiple spans or multiple annotations to a single log line, the list of attributes ends up as one big string without whitespace separation (as if usingmkString
instead ofmkString(" ")
). The same holds for the spans.e.g.
The log config is
(Also I expected double qoutes around the log messages (which contain spaces). I did see that case handled in the code, but I would have to debug why that isn't happening).
The text was updated successfully, but these errors were encountered: