mirror of
https://github.com/google/sandboxed-api.git
synced 2024-03-22 13:11:30 +08:00
logserver: Support non-UTF8 log messages
PiperOrigin-RevId: 594244338 Change-Id: Icc6bf1bea0dd8ad62e6fa274979cecd01e9b8283
This commit is contained in:
parent
e5370e93ca
commit
52babc15d4
|
@ -13,12 +13,13 @@
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
syntax = "proto3";
|
syntax = "proto3";
|
||||||
|
|
||||||
package sandbox2;
|
package sandbox2;
|
||||||
|
|
||||||
message LogMessage {
|
message LogMessage {
|
||||||
optional int32 severity = 1;
|
optional int32 severity = 1;
|
||||||
optional string path = 2;
|
optional string path = 2;
|
||||||
optional int32 line = 3;
|
optional int32 line = 3;
|
||||||
optional string message = 4;
|
optional bytes message = 4;
|
||||||
optional int32 pid = 5;
|
optional int32 pid = 5;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user