| 588 | } |
| 589 | |
| 590 | std::string renderProtoAsConfig(const google::protobuf::Message* message) |
| 591 | { |
| 592 | auto allFields = findAllProtoFields(message); |
| 593 | std::stringstream ss; |
| 594 | for (const auto& field : allFields) |
| 595 | ss << field.path() << "=" << field.get() << "\n"; |
| 596 | return ss.str(); |
| 597 | } |