(ctx context.Context, req *PerformAccountCreationRequest, res *PerformAccountCreationResponse)
| 67 | return err |
| 68 | } |
| 69 | func (t *UserInternalAPITrace) PerformAccountCreation(ctx context.Context, req *PerformAccountCreationRequest, res *PerformAccountCreationResponse) error { |
| 70 | err := t.Impl.PerformAccountCreation(ctx, req, res) |
| 71 | util.GetLogger(ctx).Infof("PerformAccountCreation req=%+v res=%+v", js(req), js(res)) |
| 72 | return err |
| 73 | } |
| 74 | func (t *UserInternalAPITrace) PerformPasswordUpdate(ctx context.Context, req *PerformPasswordUpdateRequest, res *PerformPasswordUpdateResponse) error { |
| 75 | err := t.Impl.PerformPasswordUpdate(ctx, req, res) |
| 76 | util.GetLogger(ctx).Infof("PerformPasswordUpdate req=%+v res=%+v", js(req), js(res)) |
nothing calls this directly
no test coverage detected