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
The AddByteString was added as a performance optimization to avoid allocations from []byte to string when logging, when the final value is a string: #366
Currently the MapEncoder stores this as a []byte, which is incorrect. We should store the value as a string
The text was updated successfully, but these errors were encountered:
The
AddByteString
was added as a performance optimization to avoid allocations from[]byte
tostring
when logging, when the final value is a string:#366
Currently the MapEncoder stores this as a
[]byte
, which is incorrect. We should store the value as astring
The text was updated successfully, but these errors were encountered: