aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWiktor Garbacz <wiktorg@google.com>2023-12-28 06:34:29 -0800
committerCopybara-Service <copybara-worker@google.com>2023-12-28 06:35:09 -0800
commit52babc15d4ba0931642820a4b9d5d2abfd2684f1 (patch)
tree0064df028d240a49bcadb11177ca90cbaf791022
parente5370e93ca90201d68ca75c1423e425bc8f3c1ce (diff)
downloadsandboxed-api-52babc15d4ba0931642820a4b9d5d2abfd2684f1.tar.gz
logserver: Support non-UTF8 log messages
PiperOrigin-RevId: 594244338 Change-Id: Icc6bf1bea0dd8ad62e6fa274979cecd01e9b8283
-rw-r--r--sandboxed_api/sandbox2/logserver.proto3
1 files changed, 2 insertions, 1 deletions
diff --git a/sandboxed_api/sandbox2/logserver.proto b/sandboxed_api/sandbox2/logserver.proto
index 0329c24..a2bf74d 100644
--- a/sandboxed_api/sandbox2/logserver.proto
+++ b/sandboxed_api/sandbox2/logserver.proto
@@ -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;
}