Make start/stop metods package protected

As requested in #34818
This commit is contained in:
Alpar Torok 2018-11-01 19:46:58 +02:00
parent ffacd6f0e4
commit 0bdf6a768a
1 changed files with 2 additions and 2 deletions

View File

@ -64,11 +64,11 @@ public class ElasticsearchNode {
this.distribution = distribution;
}
public void start() {
void start() {
logger.info("Starting `{}`", this);
}
public void stop(boolean tailLogs) {
void stop(boolean tailLogs) {
logger.info("Stopping `{}`, tailLogs: {}", this, tailLogs);
}