| 78 | } |
| 79 | |
| 80 | string Message::Utf8DebugString() const { |
| 81 | string debug_string; |
| 82 | |
| 83 | TextFormat::Printer printer; |
| 84 | printer.SetUseUtf8StringEscaping(true); |
| 85 | |
| 86 | printer.PrintToString(*this, &debug_string); |
| 87 | |
| 88 | return debug_string; |
| 89 | } |
| 90 | |
| 91 | void Message::PrintDebugString() const { |
| 92 | printf("%s", DebugString().c_str()); |
nothing calls this directly
no test coverage detected