( ctx context.Context, req *QueryStateAndAuthChainRequest, res *QueryStateAndAuthChainResponse, )
| 223 | } |
| 224 | |
| 225 | func (t *RoomserverInternalAPITrace) QueryStateAndAuthChain( |
| 226 | ctx context.Context, |
| 227 | req *QueryStateAndAuthChainRequest, |
| 228 | res *QueryStateAndAuthChainResponse, |
| 229 | ) error { |
| 230 | err := t.Impl.QueryStateAndAuthChain(ctx, req, res) |
| 231 | util.GetLogger(ctx).WithError(err).Infof("QueryStateAndAuthChain req=%+v res=%+v", js(req), js(res)) |
| 232 | return err |
| 233 | } |
| 234 | |
| 235 | func (t *RoomserverInternalAPITrace) PerformBackfill( |
| 236 | ctx context.Context, |
nothing calls this directly
no test coverage detected