Skip to content

Commit

Permalink
remove token from account created message
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelquigley committed Jul 31, 2023
1 parent 2cc6e95 commit 92262cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controller/register.go
Original file line number Diff line number Diff line change
Expand Up @@ -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})
}

0 comments on commit 92262cf

Please sign in to comment.