Fix order of logging parameters in ShardStateAction

This commit is contained in:
Jason Tedor 2016-01-04 11:29:00 -05:00
parent 7591f2047a
commit af523c4236
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ public class ShardStateAction extends AbstractComponent {
try {
channel.sendResponse(t);
} catch (Throwable channelThrowable) {
logger.warn("{} failed to send failure [{}] while failing shard [{}]", channelThrowable, t, request.shardRouting.shardId(), request.shardRouting);
logger.warn("{} failed to send failure [{}] while failing shard [{}]", channelThrowable, request.shardRouting.shardId(), t, request.shardRouting);
}
}