Skip to content

Commit

Permalink
Fix missing string formatting directive.
Browse files Browse the repository at this point in the history
  • Loading branch information
zackwine committed Aug 10, 2020
1 parent 5aa2edd commit f2184c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aggregate/aggregator.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ func (a *Aggregator) AggregateRecords() (entry *kinesis.PutRecordsRequestEntry,

protoBufData, err := proto.Marshal(agg)
if err != nil {
logrus.Errorf("Failed to encode record:", err)
logrus.Errorf("Failed to encode record: %v", err)
return nil, err
}

Expand Down

0 comments on commit f2184c6

Please sign in to comment.