1
0
Fork 0

Quiet some noisy log messages

This commit is contained in:
James Turner 2021-01-08 19:33:10 +00:00
parent 9b25e25935
commit 3b3e69e358
2 changed files with 0 additions and 2 deletions

View file

@ -226,7 +226,6 @@ bool FGAIFlightPlan::parseProperties(const std::string& filename)
{
SGPath fp = globals->findDataPath("AI/FlightPlans/" + filename);
if (!fp.exists()) {
SG_LOG(SG_AI, SG_WARN, "Couldn't find AI flightplan '" << filename << "'");
return false;
}

View file

@ -360,7 +360,6 @@ SGPath FGGlobals::findDataPath(const std::string& pathSuffix) const
}
}
SG_LOG(SG_IO, SG_WARN, "not found in any data path: '" << pathSuffix << "'");
return SGPath{};
}