( ctx context.Context, req *QueryStateAfterEventsRequest, res *QueryStateAfterEventsResponse, )
| 153 | } |
| 154 | |
| 155 | func (t *RoomserverInternalAPITrace) QueryStateAfterEvents( |
| 156 | ctx context.Context, |
| 157 | req *QueryStateAfterEventsRequest, |
| 158 | res *QueryStateAfterEventsResponse, |
| 159 | ) error { |
| 160 | err := t.Impl.QueryStateAfterEvents(ctx, req, res) |
| 161 | util.GetLogger(ctx).WithError(err).Infof("QueryStateAfterEvents req=%+v res=%+v", js(req), js(res)) |
| 162 | return err |
| 163 | } |
| 164 | |
| 165 | func (t *RoomserverInternalAPITrace) QueryEventsByID( |
| 166 | ctx context.Context, |
nothing calls this directly
no test coverage detected