Skip to content

Commit

Permalink
Lower log level
Browse files Browse the repository at this point in the history
  • Loading branch information
cdujeu committed Oct 2, 2018
1 parent d758b73 commit 70deb1a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions idm/share/rest/rest.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ func (h *SharesHandler) PutCell(req *restful.Request, rsp *restful.Response) {
service.RestError500(req, rsp, err)
return
}
log.Logger(ctx).Info("Received Share.Cell API request", zap.Any("input", &shareRequest))
log.Logger(ctx).Debug("Received Share.Cell API request", zap.Any("input", &shareRequest))

// Init Root Nodes and check permissions
err, createdCellNode, readonly := h.ParseRootNodes(ctx, &shareRequest)
Expand All @@ -99,8 +99,6 @@ func (h *SharesHandler) PutCell(req *restful.Request, rsp *restful.Response) {
return
}

log.Logger(ctx).Info("Share.Cell - After ParseRootNodes", zap.Any("input", &shareRequest))

workspace, wsCreated, err := h.GetOrCreateWorkspace(ctx, shareRequest.Room.Uuid, idm.WorkspaceScope_ROOM, shareRequest.Room.Label, shareRequest.Room.Description, false)
if err != nil {
service.RestError500(req, rsp, err)
Expand Down

0 comments on commit 70deb1a

Please sign in to comment.