( ctx context.Context, req *PerformJoinRequest, res *PerformJoinResponse, )
| 77 | } |
| 78 | |
| 79 | func (t *RoomserverInternalAPITrace) PerformJoin( |
| 80 | ctx context.Context, |
| 81 | req *PerformJoinRequest, |
| 82 | res *PerformJoinResponse, |
| 83 | ) { |
| 84 | t.Impl.PerformJoin(ctx, req, res) |
| 85 | util.GetLogger(ctx).Infof("PerformJoin req=%+v res=%+v", js(req), js(res)) |
| 86 | } |
| 87 | |
| 88 | func (t *RoomserverInternalAPITrace) PerformLeave( |
| 89 | ctx context.Context, |
nothing calls this directly
no test coverage detected