| 54 | // Logs a typed proto. |
| 55 | template <typename ProtoType> |
| 56 | void LogProto(const ProtoType& proto) { |
| 57 | google::protobuf::Any any; |
| 58 | any.PackFrom(proto); |
| 59 | DoLogProto(&any); |
| 60 | } |
| 61 | |
| 62 | // Flushes any pending log. Blocks until everything is flushed. |
| 63 | void Flush() { DoFlush(); } |
no outgoing calls
no test coverage detected