(ctx context.Context, req *QueryProfileRequest, res *QueryProfileResponse)
| 132 | util.GetLogger(ctx).Infof("QueryKeyBackup req=%+v res=%+v", js(req), js(res)) |
| 133 | } |
| 134 | func (t *UserInternalAPITrace) QueryProfile(ctx context.Context, req *QueryProfileRequest, res *QueryProfileResponse) error { |
| 135 | err := t.Impl.QueryProfile(ctx, req, res) |
| 136 | util.GetLogger(ctx).Infof("QueryProfile req=%+v res=%+v", js(req), js(res)) |
| 137 | return err |
| 138 | } |
| 139 | func (t *UserInternalAPITrace) QueryAccessToken(ctx context.Context, req *QueryAccessTokenRequest, res *QueryAccessTokenResponse) error { |
| 140 | err := t.Impl.QueryAccessToken(ctx, req, res) |
| 141 | util.GetLogger(ctx).Infof("QueryAccessToken req=%+v res=%+v", js(req), js(res)) |
nothing calls this directly
no test coverage detected