Skip to content

Commit

Permalink
chore: remove obsolete outside backtracking debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
pvlugter committed Jan 13, 2025
1 parent b3f1fca commit aaec498
Showing 1 changed file with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -368,16 +368,6 @@ import org.slf4j.Logger
if (offset.timestamp.isBefore(state.latest.timestamp))
throw new IllegalArgumentException(s"Unexpected offset [$offset] before latest [${state.latest}].")

if (log.isDebugEnabled()) {
if (state.latestBacktracking.seen.nonEmpty &&
offset.timestamp.isAfter(state.latestBacktracking.timestamp.plus(firstBacktrackingQueryWindow)))
log.debug(
"{} next offset is outside the backtracking window, latestBacktracking: [{}], offset: [{}]",
logPrefix,
state.latestBacktracking,
offset)
}

state.copy(latest = offset, rowCount = state.rowCount + 1)
}
}
Expand Down

0 comments on commit aaec498

Please sign in to comment.