Skip to content

Commit

Permalink
remove overly chatty test debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Osheroff committed Sep 29, 2015
1 parent 5cef9e6 commit 69d1e90
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/test/java/com/zendesk/maxwell/TestMaxwellParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ public void getEvents(EventConsumer c) throws Exception {
}

hardStop();
LOGGER.debug("exiting getEvents loop");
}

private void hardStop() throws Exception {
Expand All @@ -57,11 +56,9 @@ protected BinlogEventV4 pollV4EventFromQueue() throws InterruptedException
{
BinlogEventV4 v4 = super.pollV4EventFromQueue();
if ( v4 != null && v4.getHeader().getNextPosition() >= this.stopAt.getOffset() ) {
LOGGER.debug("stopping getEvents loop");
shouldStop = true;
}

LOGGER.debug("got event: " + v4);
return v4;
}
}

0 comments on commit 69d1e90

Please sign in to comment.