remove all printlln

This commit is contained in:
soukainna
2022-11-08 17:56:12 +01:00
parent 6accf3e4b9
commit 941a7ccc5e
3 changed files with 0 additions and 20 deletions

View File

@@ -138,7 +138,6 @@ func (h *ApplicationHandler) DisplayGroupModule(w http.ResponseWriter, r *http.R
w.WriteHeader(http.StatusInternalServerError)
return
}
fmt.Println(resp.Group.Members)
var accounts = []any{}
@@ -157,7 +156,6 @@ func (h *ApplicationHandler) DisplayGroupModule(w http.ResponseWriter, r *http.R
accounts = append(accounts, a)
}
}
fmt.Println(accounts)
cacheid := uuid.NewString()
h.cache.PutWithTTL(cacheid, accounts, 1*time.Hour)
@@ -198,12 +196,6 @@ func (h *ApplicationHandler) DisplayGroupModule(w http.ResponseWriter, r *http.R
return
}
fmt.Println("yeesssssssssssssssssssssssss")
fmt.Println(respbeneficiary.Account.Id)
fmt.Println("===================yeesssssssssssssssssssssssss")
fmt.Println(r.FormValue("beneficiaryid"))
fmt.Println("=====================yeesssssssssssssssssssssssss")
// }
http.Redirect(w, r, fmt.Sprintf("/app/group_module/groups/%s", resp.Group.ToStorageType().ID), http.StatusFound)
return
}