(ctx context.Context, req *QuerySearchProfilesRequest, res *QuerySearchProfilesResponse)
| 157 | return err |
| 158 | } |
| 159 | func (t *UserInternalAPITrace) QuerySearchProfiles(ctx context.Context, req *QuerySearchProfilesRequest, res *QuerySearchProfilesResponse) error { |
| 160 | err := t.Impl.QuerySearchProfiles(ctx, req, res) |
| 161 | util.GetLogger(ctx).Infof("QuerySearchProfiles req=%+v res=%+v", js(req), js(res)) |
| 162 | return err |
| 163 | } |
| 164 | func (t *UserInternalAPITrace) QueryOpenIDToken(ctx context.Context, req *QueryOpenIDTokenRequest, res *QueryOpenIDTokenResponse) error { |
| 165 | err := t.Impl.QueryOpenIDToken(ctx, req, res) |
| 166 | util.GetLogger(ctx).Infof("QueryOpenIDToken req=%+v res=%+v", js(req), js(res)) |
nothing calls this directly
no test coverage detected