| 86 | } |
| 87 | |
| 88 | void TJsonTraceConsumer::EndEvent(const TEventArgs* args) { |
| 89 | if (args) { |
| 90 | WriteArgs(*args); |
| 91 | } |
| 92 | Json.EndObject().UnsafeWriteRawBytes(TStringBuf("\n")); |
| 93 | } |
| 94 | |
| 95 | void TJsonTraceConsumer::WriteArgs(const TEventArgs& args) { |
| 96 | struct TWriteArg { |
nothing calls this directly
no test coverage detected