( ctx context.Context, req *PerformBackfillRequest, res *PerformBackfillResponse, )
| 233 | } |
| 234 | |
| 235 | func (t *RoomserverInternalAPITrace) PerformBackfill( |
| 236 | ctx context.Context, |
| 237 | req *PerformBackfillRequest, |
| 238 | res *PerformBackfillResponse, |
| 239 | ) error { |
| 240 | err := t.Impl.PerformBackfill(ctx, req, res) |
| 241 | util.GetLogger(ctx).WithError(err).Infof("PerformBackfill req=%+v res=%+v", js(req), js(res)) |
| 242 | return err |
| 243 | } |
| 244 | |
| 245 | func (t *RoomserverInternalAPITrace) PerformForget( |
| 246 | ctx context.Context, |
nothing calls this directly
no test coverage detected