| 643 | } // anonymous namespace |
| 644 | |
| 645 | string SecureDebugString(const Message& msg) { |
| 646 | string debug_string; |
| 647 | TextFormat::Printer printer; |
| 648 | printer.SetDefaultFieldValuePrinter(new SecureFieldPrinter()); |
| 649 | printer.PrintToString(msg, &debug_string); |
| 650 | return debug_string; |
| 651 | } |
| 652 | |
| 653 | string SecureShortDebugString(const Message& msg) { |
| 654 | string debug_string; |
no outgoing calls