Skip to content

Commit

Permalink
remove excess log
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisgsmith committed Mar 21, 2024
1 parent bf6925b commit db592a9
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions api/internal/handler/collection_groups.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package handler

import (
"log"
"net/http"
"time"

Expand Down Expand Up @@ -94,8 +93,6 @@ func (h *ApiHandler) CreateCollectionGroup(c echo.Context) error {
p := c.Get("profile").(model.Profile)
cg.CreatorID, cg.CreateDate = p.ID, time.Now()

log.Printf("CollectionGroup: %+v", cg)

cgNew, err := h.CollectionGroupService.CreateCollectionGroup(c.Request().Context(), cg)
if err != nil {
return echo.NewHTTPError(http.StatusInternalServerError, err.Error())
Expand Down

0 comments on commit db592a9

Please sign in to comment.