This commit is contained in:
eson 2023-08-29 16:02:54 +08:00
parent 8776e485ed
commit 7a845bb83f

View File

@ -123,8 +123,11 @@ func (l *UserEmailConfirmationLogic) UserEmailConfirmation(req *types.RequestEma
return resp.SetStatus(basic.CodeDbSqlErr)
}
FinishRegister(l.svcCtx, user, token)
logx.Info("success", token.TraceId)
err = FinishRegister(l.svcCtx, user, token)
if err != nil {
logx.Error(err)
}
logx.Info("success:", token.TraceId)
}
default: