logging: if starting watcher fails this should be more visible
Original commit: elastic/x-pack-elasticsearch@26da9d7661
This commit is contained in:
parent
58bd0cc509
commit
075e6caba0
|
@ -82,7 +82,7 @@ public class WatcherLifeCycleService extends AbstractComponent implements Cluste
|
||||||
try {
|
try {
|
||||||
watcherService.start(state);
|
watcherService.start(state);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
logger.debug("failed to start watcher. please wait for the cluster to become ready or try to start Watcher manually");
|
logger.warn("failed to start watcher. please wait for the cluster to become ready or try to start Watcher manually", e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue