( ctx context.Context, req *QueryMembershipsForRoomRequest, res *QueryMembershipsForRoomResponse, )
| 183 | } |
| 184 | |
| 185 | func (t *RoomserverInternalAPITrace) QueryMembershipsForRoom( |
| 186 | ctx context.Context, |
| 187 | req *QueryMembershipsForRoomRequest, |
| 188 | res *QueryMembershipsForRoomResponse, |
| 189 | ) error { |
| 190 | err := t.Impl.QueryMembershipsForRoom(ctx, req, res) |
| 191 | util.GetLogger(ctx).WithError(err).Infof("QueryMembershipsForRoom req=%+v res=%+v", js(req), js(res)) |
| 192 | return err |
| 193 | } |
| 194 | |
| 195 | func (t *RoomserverInternalAPITrace) QueryServerJoinedToRoom( |
| 196 | ctx context.Context, |
nothing calls this directly
no test coverage detected