Skip to content

Commit

Permalink
meh
Browse files Browse the repository at this point in the history
  • Loading branch information
mreiferson committed May 30, 2023
1 parent 01b40fb commit 3a4bd7c
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions diskqueue.go
Original file line number Diff line number Diff line change
Expand Up @@ -676,9 +676,6 @@ func (d *diskQueue) ioLoop() {
count = 0
}

d.logf(INFO, "writePos=%d writeFileNum=%d depth=%d maxBytesPerFile=%d readPos=%d readFileNum=%d maxBytesPerFileRead=%d nextReadPos=%d nextReadFileNum=%d",
d.writePos, d.writeFileNum, d.depth, d.maxBytesPerFile, d.readPos, d.readFileNum, d.maxBytesPerFileRead, d.nextReadPos, d.nextReadFileNum)

if d.readFileNum < d.writeFileNum || (d.readFileNum == d.writeFileNum && d.readPos < d.writePos) {
if d.nextReadPos == d.readPos {
dataRead, err = d.readOne()
Expand Down

0 comments on commit 3a4bd7c

Please sign in to comment.