Skip to content

Commit

Permalink
MINOR: Add missing + in LogSegment.toString (apache#7408)
Browse files Browse the repository at this point in the history
The closing `)` was previously being discarded.

Reviewers: Manikumar Reddy <[email protected]>
ijuma authored Sep 29, 2019

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 66183f7 commit 469f002
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/scala/kafka/log/LogSegment.scala
Original file line number Diff line number Diff line change
@@ -412,7 +412,7 @@ class LogSegment private[log] (val log: FileRecords,
override def toString: String = "LogSegment(baseOffset=" + baseOffset +
", size=" + size +
", lastModifiedTime=" + lastModified +
", largestTime=" + largestTimestamp
", largestTime=" + largestTimestamp +
")"

/**

0 comments on commit 469f002

Please sign in to comment.