|
|
@@ -247,6 +247,7 @@ void CHealthManagerEntity::OnStarted()
|
|
|
step->LoadConfig(configPath);
|
|
|
result = step->StartStartupEntities(this);
|
|
|
if (result != Error_Succeed) {
|
|
|
+ LogError(Severity_Middle, result, 0, CSimpleStringA::Format("Initial Boot Step failed: %s", SpStrError(result)));
|
|
|
return;
|
|
|
}
|
|
|
}
|
|
|
@@ -260,6 +261,7 @@ void CHealthManagerEntity::OnStarted()
|
|
|
step->LoadConfig(configPath);
|
|
|
result = step->StartStartupEntities(this);
|
|
|
if (result != Error_Succeed) {
|
|
|
+ LogError(Severity_Middle, result, 0, CSimpleStringA::Format("Second Boot Step failed: %s", SpStrError(result)));
|
|
|
return;
|
|
|
}
|
|
|
}
|
|
|
@@ -273,6 +275,7 @@ void CHealthManagerEntity::OnStarted()
|
|
|
step->LoadConfig(configPath);
|
|
|
result = step->StartStartupEntities(this);
|
|
|
if (result != Error_Succeed) {
|
|
|
+ LogError(Severity_Middle, result, 0, CSimpleStringA::Format("Third Boot Step failed: %s", SpStrError(result)));
|
|
|
return;
|
|
|
}
|
|
|
}
|