Skip to content

Commit

Permalink
tweak logging message
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Mar 13, 2019
1 parent 5087c9a commit c2a0490
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -1050,7 +1050,7 @@ protected OutgoingBatch extractOutgoingBatch(ProcessInfo extractInfo, Node targe
} catch (ProtocolException e) {
if (!configurationService.getNodeChannel(currentBatch.getChannelId(), false).getChannel().isContainsBigLob()) {
log.warn(e.getMessage());
log.info("Re-attempting extraction for batch {} with contains_big_lobs enabled for channel {}",
log.info("Re-attempting extraction for batch {} with contains_big_lobs temporarily enabled for channel {}",
currentBatch.getBatchId(), currentBatch.getChannelId());
extractInfo.setTotalDataCount(currentBatch.getDataRowCount());
currentBatch.resetStats();
Expand Down
Expand Up @@ -761,7 +761,7 @@ protected long routeDataForChannel(ProcessInfo processInfo, final NodeChannel no
batch.resetRouterStats();
batchId = batch.getBatchId();
}
log.info("Re-attempting routing for batch {} with contains_big_lobs enabled for channel {}",
log.info("Re-attempting routing for batch {} with contains_big_lobs temporarily enabled for channel {}",
batchId, nodeChannel.getChannelId());
dataCount = 0;
gapDetector.addDataIds(context.getDataIds());
Expand Down

0 comments on commit c2a0490

Please sign in to comment.