(ctx context.Context, req *QueryCurrentStateRequest, res *QueryCurrentStateResponse)
| 313 | } |
| 314 | |
| 315 | func (t *RoomserverInternalAPITrace) QueryCurrentState(ctx context.Context, req *QueryCurrentStateRequest, res *QueryCurrentStateResponse) error { |
| 316 | err := t.Impl.QueryCurrentState(ctx, req, res) |
| 317 | util.GetLogger(ctx).WithError(err).Infof("QueryCurrentState req=%+v res=%+v", js(req), js(res)) |
| 318 | return err |
| 319 | } |
| 320 | |
| 321 | // QueryRoomsForUser retrieves a list of room IDs matching the given query. |
| 322 | func (t *RoomserverInternalAPITrace) QueryRoomsForUser(ctx context.Context, req *QueryRoomsForUserRequest, res *QueryRoomsForUserResponse) error { |
nothing calls this directly
no test coverage detected