( ctx context.Context, req *QueryServerJoinedToRoomRequest, res *QueryServerJoinedToRoomResponse, )
| 193 | } |
| 194 | |
| 195 | func (t *RoomserverInternalAPITrace) QueryServerJoinedToRoom( |
| 196 | ctx context.Context, |
| 197 | req *QueryServerJoinedToRoomRequest, |
| 198 | res *QueryServerJoinedToRoomResponse, |
| 199 | ) error { |
| 200 | err := t.Impl.QueryServerJoinedToRoom(ctx, req, res) |
| 201 | util.GetLogger(ctx).WithError(err).Infof("QueryServerJoinedToRoom req=%+v res=%+v", js(req), js(res)) |
| 202 | return err |
| 203 | } |
| 204 | |
| 205 | func (t *RoomserverInternalAPITrace) QueryServerAllowedToSeeEvent( |
| 206 | ctx context.Context, |
nothing calls this directly
no test coverage detected