Skip to content

Commit

Permalink
Merge pull request #40 from jboyd01/master
Browse files Browse the repository at this point in the history
change Info msgs to V(2).Info
  • Loading branch information
lilic authored Apr 13, 2018
2 parents bb15953 + f67ad13 commit cfcc33d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pkg/rest/apisurface.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ func (s *APISurface) ProvisionHandler(w http.ResponseWriter, r *http.Request) {
return
}

glog.Infof("Received ProvisionRequest for instanceID %q", request.InstanceID)
glog.V(4).Infof("Received ProvisionRequest for instanceID %q", request.InstanceID)

c := &broker.RequestContext{
Writer: w,
Expand Down Expand Up @@ -166,7 +166,7 @@ func (s *APISurface) DeprovisionHandler(w http.ResponseWriter, r *http.Request)
return
}

glog.Infof("Received DeprovisionRequest for instanceID %q", request.InstanceID)
glog.V(4).Infof("Received DeprovisionRequest for instanceID %q", request.InstanceID)

c := &broker.RequestContext{
Writer: w,
Expand Down Expand Up @@ -230,7 +230,7 @@ func (s *APISurface) LastOperationHandler(w http.ResponseWriter, r *http.Request
return
}

glog.Infof("Received LastOperationRequest for instanceID %q", request.InstanceID)
glog.V(4).Infof("Received LastOperationRequest for instanceID %q", request.InstanceID)

c := &broker.RequestContext{
Writer: w,
Expand Down Expand Up @@ -287,7 +287,7 @@ func (s *APISurface) BindHandler(w http.ResponseWriter, r *http.Request) {
return
}

glog.Infof("Received BindRequest for instanceID %q, bindingID %q", request.InstanceID, request.BindingID)
glog.V(4).Infof("Received BindRequest for instanceID %q, bindingID %q", request.InstanceID, request.BindingID)

c := &broker.RequestContext{
Writer: w,
Expand Down Expand Up @@ -346,7 +346,7 @@ func (s *APISurface) UnbindHandler(w http.ResponseWriter, r *http.Request) {
return
}

glog.Infof("Received UnbindRequest for instanceID %q, bindingID %q", request.InstanceID, request.BindingID)
glog.V(4).Infof("Received UnbindRequest for instanceID %q, bindingID %q", request.InstanceID, request.BindingID)
c := &broker.RequestContext{
Writer: w,
Request: r,
Expand Down Expand Up @@ -398,7 +398,7 @@ func (s *APISurface) UpdateHandler(w http.ResponseWriter, r *http.Request) {
return
}

glog.Infof("Received Update Request for instanceID %q", request.InstanceID)
glog.V(4).Infof("Received Update Request for instanceID %q", request.InstanceID)

c := &broker.RequestContext{
Writer: w,
Expand Down

0 comments on commit cfcc33d

Please sign in to comment.