removed log statements

Original commit: elastic/x-pack-elasticsearch@c4b7b16cd4
This commit is contained in:
Martijn van Groningen 2014-12-05 15:36:18 +01:00
parent aeacbe44ca
commit 984d7d615a
1 changed files with 0 additions and 3 deletions

View File

@ -265,7 +265,6 @@ public class AlertManager extends AbstractComponent {
if (configurationManager.start(initialState)) { if (configurationManager.start(initialState)) {
break; break;
} }
logger.error("CONFIG NOT STARTED");
clusterState = newClusterState(clusterState); clusterState = newClusterState(clusterState);
} }
// Try to load alert store before the action manager, b/c action depends on alert store // Try to load alert store before the action manager, b/c action depends on alert store
@ -273,14 +272,12 @@ public class AlertManager extends AbstractComponent {
if (alertsStore.start(clusterState)) { if (alertsStore.start(clusterState)) {
break; break;
} }
logger.error("STORE NOT STARTED");
clusterState = newClusterState(clusterState); clusterState = newClusterState(clusterState);
} }
while (true) { while (true) {
if (actionManager.start(clusterState)) { if (actionManager.start(clusterState)) {
break; break;
} }
logger.error("ACTION NOT STARTED");
clusterState = newClusterState(clusterState); clusterState = newClusterState(clusterState);
} }