logserver: Support non-UTF8 log messages

PiperOrigin-RevId: 594244338
Change-Id: Icc6bf1bea0dd8ad62e6fa274979cecd01e9b8283
pull/171/head
Wiktor Garbacz 2023-12-28 06:34:29 -08:00 committed by Copybara-Service
parent e5370e93ca
commit 52babc15d4
1 changed files with 2 additions and 1 deletions

View File

@ -13,12 +13,13 @@
// limitations under the License.
syntax = "proto3";
package sandbox2;
message LogMessage {
optional int32 severity = 1;
optional string path = 2;
optional int32 line = 3;
optional string message = 4;
optional bytes message = 4;
optional int32 pid = 5;
}