Open
Description
What language does this apply to?
C++
Describe the problem you are trying to solve.
In our project we want add custom DebugString
function for protobuf::Message
.
Our Implementation is similar to protobuf::Message::DebugString with some specific.
We also use TextFormat::Printer
for that, but we need be able to set TextFormat::Printer::SetRedactDebugString(true)
.
Describe the solution you'd like
All we need is to make method TextFormat::Printer::SetRedactDebugString
public.
Describe alternatives you've considered
Our own implementaion of protobuf::TextFormat::FastFieldValuePrinter
Additional context
none