diff --git a/symmetric-core/src/main/java/org/jumpmind/symmetric/route/DataGapFastDetector.java b/symmetric-core/src/main/java/org/jumpmind/symmetric/route/DataGapFastDetector.java index a9c54789f1..e8962b8eca 100644 --- a/symmetric-core/src/main/java/org/jumpmind/symmetric/route/DataGapFastDetector.java +++ b/symmetric-core/src/main/java/org/jumpmind/symmetric/route/DataGapFastDetector.java @@ -237,15 +237,13 @@ public void afterRouting() { expireChecked++; } if (isAllDataRead || isGapEmpty) { - if (log.isDebugEnabled()) { - if (dataGap.getStartId() == dataGap.getEndId()) { - log.debug("Found a gap in data_id at {}. Skipping it because " + - (supportsTransactionViews ? "there are no pending transactions" : "the gap expired"), dataGap.getStartId()); - } else { - log.debug("Found a gap in data_id from {} to {}. Skipping it because " + - (supportsTransactionViews ? "there are no pending transactions" : "the gap expired"), - dataGap.getStartId(), dataGap.getEndId()); - } + if (dataGap.getStartId() == dataGap.getEndId()) { + log.info("Found a gap in data_id at {}. Skipping it because " + + (supportsTransactionViews ? "there are no pending transactions" : "the gap expired"), dataGap.getStartId()); + } else { + log.info("Found a gap in data_id from {} to {}. Skipping it because " + + (supportsTransactionViews ? "there are no pending transactions" : "the gap expired"), + dataGap.getStartId(), dataGap.getEndId()); } gapsDeleted.add(dataGap); gapsAll.remove(dataGap);