Skip to content

Commit

Permalink
remove debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
james-rms committed Sep 15, 2024
1 parent e0de798 commit 823c04f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions go/mcap/reader_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -908,7 +908,6 @@ func TestOrderStableWithEquivalentTimestamps(t *testing.T) {
}
assert.Equal(t, uint64(0), msg.LogTime)
msgNumber := binary.LittleEndian.Uint64(msg.Data)
fmt.Printf("msgNumber: %d\n", msgNumber)
if numRead != 0 {
assert.Less(t, msgNumber, lastMessageNumber)
}
Expand Down Expand Up @@ -1143,7 +1142,6 @@ func TestFooterOffsetErrorDetected(t *testing.T) {
// break the footer summary offset field. This is 8 + 8 + 4 + 8 bytes from end of file.
mcapBytes := buf.Bytes()
end := len(mcapBytes)
fmt.Printf("end is %d\n", end)
binary.LittleEndian.PutUint64(mcapBytes[end-8-8-4-8:], 999999999)

reader, err := NewReader(bytes.NewReader(mcapBytes))
Expand Down

0 comments on commit 823c04f

Please sign in to comment.