diff --git a/symmetric-core/src/main/java/org/jumpmind/symmetric/service/impl/RouterService.java b/symmetric-core/src/main/java/org/jumpmind/symmetric/service/impl/RouterService.java index 8c4f26f027..6960b2b5f5 100644 --- a/symmetric-core/src/main/java/org/jumpmind/symmetric/service/impl/RouterService.java +++ b/symmetric-core/src/main/java/org/jumpmind/symmetric/service/impl/RouterService.java @@ -904,10 +904,9 @@ protected int selectDataAndRoute(ProcessInfo processInfo, ChannelRouterContext c if (routeTs > 60000 && context != null) { log.info( "Routing for channel '{}' has been processing for {} seconds. The following stats have been gathered: " - + "totalDataRoutedCount={}, totalDataEventCount={}, startDataId={}, endDataId={}, dataReadCount={}, peekAheadFillCount={}, transactions={}, dataGaps={}", + + "totalDataRoutedCount={}, totalDataEventCount={}, startDataId={}, endDataId={}, dataReadCount={}, peekAheadFillCount={}, dataGaps={}", new Object[] { context.getChannel().getChannelId(), ((System.currentTimeMillis()-startTime) / 1000), totalDataCount, totalDataEventCount, context.getStartDataId(), context.getEndDataId(), context.getDataReadCount(), context.getPeekAheadFillCount(), - StringUtils.abbreviate(context.getTransactions().toString(), MAX_LOGGING_LENGTH), StringUtils.abbreviate(context.getDataGaps().toString(), MAX_LOGGING_LENGTH) }); ts = System.currentTimeMillis(); }