mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-01 16:39:11 +00:00
Moving log level to debug
We don't want to have too much INFO log level. So we move some parts to log.debug. Closes #4.
This commit is contained in:
parent
27521f61f3
commit
615b1f63e5
@ -105,7 +105,7 @@ public class GceUnicastHostsProvider extends AbstractComponent implements Unicas
|
|||||||
}
|
}
|
||||||
lastRefresh = System.currentTimeMillis();
|
lastRefresh = System.currentTimeMillis();
|
||||||
}
|
}
|
||||||
logger.info("start building nodes list using GCE API");
|
logger.debug("start building nodes list using GCE API");
|
||||||
|
|
||||||
cachedDiscoNodes = Lists.newArrayList();
|
cachedDiscoNodes = Lists.newArrayList();
|
||||||
String ipAddress = null;
|
String ipAddress = null;
|
||||||
@ -236,7 +236,7 @@ public class GceUnicastHostsProvider extends AbstractComponent implements Unicas
|
|||||||
logger.trace("Exception caught during discovery", e);
|
logger.trace("Exception caught during discovery", e);
|
||||||
}
|
}
|
||||||
|
|
||||||
logger.info("{} node(s) added", cachedDiscoNodes.size());
|
logger.debug("{} node(s) added", cachedDiscoNodes.size());
|
||||||
logger.debug("using dynamic discovery nodes {}", cachedDiscoNodes);
|
logger.debug("using dynamic discovery nodes {}", cachedDiscoNodes);
|
||||||
|
|
||||||
return cachedDiscoNodes;
|
return cachedDiscoNodes;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user