update log

This commit is contained in:
Carlosokumu 2024-09-06 11:02:33 +03:00
parent d001c5a7fc
commit 2cc85379cc
Signed by: carlos
GPG Key ID: 7BD6BC8160A5C953

View File

@ -172,7 +172,7 @@ func (h *Handlers) CreateAccount(ctx context.Context, sym string, input []byte)
_, err = utils.ReadEntry(ctx, h.userdataStore, sessionId, utils.DATA_ACCOUNT_CREATED)
if err != nil {
if db.IsNotFound(err) {
fmt.Println("Creating an account because it doesn't exist")
logg.Printf(logging.LVL_INFO, "Creating an account because it doesn't exist")
err = h.createAccountNoExist(ctx, sessionId, &res)
if err != nil {
return res, err
@ -315,6 +315,8 @@ func (h *Handlers) SaveFamilyname(ctx context.Context, sym string, input []byte)
if err != nil {
return res, nil
}
} else {
return res,fmt.Errorf("a family name cannot be less than one character")
}
return res, nil