also remove force option from logger.trace

This commit is contained in:
Michael McCandless 2015-01-29 16:18:21 -05:00 committed by mikemccand
parent eea22d7731
commit ecc8b702d3

View File

@ -108,7 +108,7 @@ public class TransportRefreshAction extends TransportBroadcastOperationAction<Re
protected ShardRefreshResponse shardOperation(ShardRefreshRequest request) throws ElasticsearchException {
IndexShard indexShard = indicesService.indexServiceSafe(request.shardId().getIndex()).shardSafe(request.shardId().id());
indexShard.refresh("api");
logger.trace("{} refresh request executed, force: [{}]", indexShard.shardId());
logger.trace("{} refresh request executed", indexShard.shardId());
return new ShardRefreshResponse(request.shardId());
}