( ctx context.Context, req *PerformRoomUpgradeRequest, res *PerformRoomUpgradeResponse, )
| 68 | } |
| 69 | |
| 70 | func (t *RoomserverInternalAPITrace) PerformRoomUpgrade( |
| 71 | ctx context.Context, |
| 72 | req *PerformRoomUpgradeRequest, |
| 73 | res *PerformRoomUpgradeResponse, |
| 74 | ) { |
| 75 | t.Impl.PerformRoomUpgrade(ctx, req, res) |
| 76 | util.GetLogger(ctx).Infof("PerformRoomUpgrade req=%+v res=%+v", js(req), js(res)) |
| 77 | } |
| 78 | |
| 79 | func (t *RoomserverInternalAPITrace) PerformJoin( |
| 80 | ctx context.Context, |
nothing calls this directly
no test coverage detected