Revert "Add Log Warning in case active-stage is empty"

This reverts commit 287f72b0a0.
This commit is contained in:
Jean Flach 2017-09-21 13:54:29 +02:00
parent 287f72b0a0
commit 79166a31d4
1 changed files with 1 additions and 5 deletions

View File

@ -254,11 +254,7 @@ String ConfigPackageUtility::GetActiveStage(const String& packageName)
fp.close(); fp.close();
if (fp.fail()) if (fp.fail())
stage = ""; return "";
if (stage.IsEmpty())
Log(LogWarning, "ConfigPackageUtility")
<< "Could not determinate the active stage, does \"" << path << "\" exist?";
return stage.Trim(); return stage.Trim();
} }