updating topic/partition/offset order (#2250)

* updating order of topic/partition/offset in log message
This commit is contained in:
Jacob Brinlee 2022-11-03 09:20:49 -05:00 committed by GitHub
parent ca16e7f8fa
commit dd30168b1c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -240,7 +240,7 @@ func (r *Record) Commit(ctx context.Context) error {
if r.src.Verbose {
for _, o := range committedOffsets {
r.src.Log.Debugf("p: %v t: %v o: %v", o.Partition, *o.Topic, o.Offset)
r.src.Log.Debugf("t: %v p: %v o: %v", *o.Topic, o.Partition, o.Offset)
}
}