logging: if starting watcher fails this should be more visible

Original commit: elastic/x-pack-elasticsearch@26da9d7661
This commit is contained in:
Martijn van Groningen 2015-06-23 08:42:56 +02:00
parent 58bd0cc509
commit 075e6caba0
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ public class WatcherLifeCycleService extends AbstractComponent implements Cluste
try {
watcherService.start(state);
} 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);
}
}