mirror of
https://github.com/protocolbuffers/protobuf
synced 2026-08-26 02:23:14 -04:00
This change implements a custom Debug for messages, views and muts in the C++ kernel. Debug defers to proto2::Utf8Format. It implements this only for the C++ kernel. We will need to pull in additional dependencies beyond minitables to implement it for UPB as well. This will be done at a later point. PiperOrigin-RevId: 613191236
8 lines
126 B
Protocol Buffer
8 lines
126 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package debug;
|
|
|
|
message DebugMsg {
|
|
int32 id = 1;
|
|
string secret_user_data = 2 [debug_redact = true];
|
|
}
|