( ctx context.Context, req *QueryEventsByIDRequest, res *QueryEventsByIDResponse, )
| 163 | } |
| 164 | |
| 165 | func (t *RoomserverInternalAPITrace) QueryEventsByID( |
| 166 | ctx context.Context, |
| 167 | req *QueryEventsByIDRequest, |
| 168 | res *QueryEventsByIDResponse, |
| 169 | ) error { |
| 170 | err := t.Impl.QueryEventsByID(ctx, req, res) |
| 171 | util.GetLogger(ctx).WithError(err).Infof("QueryEventsByID req=%+v res=%+v", js(req), js(res)) |
| 172 | return err |
| 173 | } |
| 174 | |
| 175 | func (t *RoomserverInternalAPITrace) QueryMembershipForUser( |
| 176 | ctx context.Context, |
nothing calls this directly
no test coverage detected