add log message on hte concurrent streams used

This commit is contained in:
kimchy 2010-12-13 00:08:57 +02:00
parent ceb7b90740
commit d0eed79175
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ public class RecoverySource extends AbstractComponent {
this.translogBatchSize = componentSettings.getAsInt("translog_batch_size", 100);
this.compress = componentSettings.getAsBoolean("compress", true);
logger.debug("using file_chunk_size [{}], translog_batch_size [{}], and compress [{}]", fileChunkSize, translogBatchSize, compress);
logger.debug("using concurrent_streams [{}], file_chunk_size [{}], translog_batch_size [{}], and compress [{}]", concurrentStreams, fileChunkSize, translogBatchSize, compress);
transportService.registerHandler(Actions.START_RECOVERY, new StartRecoveryTransportRequestHandler());
}