fix log to trace
This commit is contained in:
parent
b28c82a1e6
commit
74e8d299d6
|
@ -57,7 +57,7 @@ public class TransportGetMappingsAction extends TransportClusterInfoAction<GetMa
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void doMasterOperation(final GetMappingsRequest request, final ClusterState state, final ActionListener<GetMappingsResponse> listener) throws ElasticSearchException {
|
protected void doMasterOperation(final GetMappingsRequest request, final ClusterState state, final ActionListener<GetMappingsResponse> listener) throws ElasticSearchException {
|
||||||
logger.debug("Serving getMapping request based on version {}", state.version());
|
logger.trace("serving getMapping request based on version {}", state.version());
|
||||||
ImmutableMap<String, ImmutableMap<String, MappingMetaData>> result = state.metaData().findMappings(
|
ImmutableMap<String, ImmutableMap<String, MappingMetaData>> result = state.metaData().findMappings(
|
||||||
request.indices(), request.types()
|
request.indices(), request.types()
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue