( ctx context.Context, req *QueryMissingEventsRequest, res *QueryMissingEventsResponse, )
| 213 | } |
| 214 | |
| 215 | func (t *RoomserverInternalAPITrace) QueryMissingEvents( |
| 216 | ctx context.Context, |
| 217 | req *QueryMissingEventsRequest, |
| 218 | res *QueryMissingEventsResponse, |
| 219 | ) error { |
| 220 | err := t.Impl.QueryMissingEvents(ctx, req, res) |
| 221 | util.GetLogger(ctx).WithError(err).Infof("QueryMissingEvents req=%+v res=%+v", js(req), js(res)) |
| 222 | return err |
| 223 | } |
| 224 | |
| 225 | func (t *RoomserverInternalAPITrace) QueryStateAndAuthChain( |
| 226 | ctx context.Context, |
nothing calls this directly
no test coverage detected