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
We log raw packets in different places. Sometimes, we pass it to the logger as a string, sometimes as a byte slice. Specifically, this affects the TCP ingestion path.
This leads to confusing log output, especially in the JSON format, because the "binary" data is Base64-encoded by the log library.
We should consistently convert the lines to strings for logging, since we know that it's mostly-ASCII data.
The text was updated successfully, but these errors were encountered:
We log raw packets in different places. Sometimes, we pass it to the logger as a string, sometimes as a byte slice. Specifically, this affects the TCP ingestion path.
This leads to confusing log output, especially in the JSON format, because the "binary" data is Base64-encoded by the log library.
We should consistently convert the lines to strings for logging, since we know that it's mostly-ASCII data.
The text was updated successfully, but these errors were encountered: