Skip to content

Commit

Permalink
Fix fmt string for an Errorf call (istio#8382)
Browse files Browse the repository at this point in the history
  • Loading branch information
douglas-reid authored and sebastienvas committed Aug 31, 2018
1 parent 8974e40 commit 2995bc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion galley/pkg/runtime/state.go
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ func (s *State) envelopeResource(event resource.Event) (*mcp.Envelope, bool) {

createTime, err := types.TimestampProto(event.ID.CreateTime)
if err != nil {
scope.Errorf("Error parsing resource create_time: %v", event, err)
scope.Errorf("Error parsing resource create_time for event (%v): %v", event, err)
return nil, false
}

Expand Down

0 comments on commit 2995bc7

Please sign in to comment.