remove token from account created message

This commit is contained in:
Michael Quigley 2023-07-31 15:18:29 -04:00
parent 2cc6e9524c
commit 92262cf379
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62

View File

@ -75,7 +75,7 @@ func (h *registerHandler) Handle(params account.RegisterParams) middleware.Respo
return account.NewRegisterInternalServerError()
}
logrus.Infof("created account '%v' with token '%v'", a.Email, a.Token)
logrus.Infof("created account '%v'", a.Email)
return account.NewRegisterOK().WithPayload(&rest_model_zrok.RegisterResponse{Token: a.Token})
}