Logging shard level multi percolate errors under debug rather than trace

This commit is contained in:
Boaz Leskes 2013-08-29 14:14:12 +02:00
parent 649108656d
commit ffd019c07e
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ public class TransportShardMultiPercolateAction extends TransportShardSingleOper
try { try {
responseItem.response = percolatorService.percolate(item.request); responseItem.response = percolatorService.percolate(item.request);
} catch (Throwable e) { } catch (Throwable e) {
logger.trace("[{}][{}] failed to multi percolate", e, request.index(), request.shardId()); logger.debug("[{}][{}] failed to multi percolate", e, request.index(), request.shardId());
if (TransportActions.isShardNotAvailableException(e)) { if (TransportActions.isShardNotAvailableException(e)) {
throw new ElasticSearchException("", e); throw new ElasticSearchException("", e);
} else { } else {