( ctx context.Context, req *QueryPublishedRoomsRequest, res *QueryPublishedRoomsResponse, )
| 133 | } |
| 134 | |
| 135 | func (t *RoomserverInternalAPITrace) QueryPublishedRooms( |
| 136 | ctx context.Context, |
| 137 | req *QueryPublishedRoomsRequest, |
| 138 | res *QueryPublishedRoomsResponse, |
| 139 | ) error { |
| 140 | err := t.Impl.QueryPublishedRooms(ctx, req, res) |
| 141 | util.GetLogger(ctx).WithError(err).Infof("QueryPublishedRooms req=%+v res=%+v", js(req), js(res)) |
| 142 | return err |
| 143 | } |
| 144 | |
| 145 | func (t *RoomserverInternalAPITrace) QueryLatestEventsAndState( |
| 146 | ctx context.Context, |
nothing calls this directly
no test coverage detected