]> git.mxchange.org Git - flightgear.git/blobdiff - src/Airports/simple.cxx
Several Bugfixes:
[flightgear.git] / src / Airports / simple.cxx
index 9df1cb254723f3ffd530f9430b6f2ead28caded5..92b79005ad756d5a8b3945a8dd2316f5bb534a76 100644 (file)
@@ -76,6 +76,7 @@ FGAirport::FGAirport(const string &id, const SGGeod& location, const SGGeod& tow
 
 FGAirport::~FGAirport()
 {
+    cerr << "Deleting Airport" << endl;
     delete _dynamics;
 }
 
@@ -442,7 +443,7 @@ void FGAirport::processThreshold(SGPropertyNode* aThreshold)
   // first, let's identify the current runway
   string id(aThreshold->getStringValue("rwy"));
   if (!hasRunwayWithIdent(id)) {
-    SG_LOG(SG_GENERAL, SG_WARN, "FGAirport::processThreshold: "
+    SG_LOG(SG_GENERAL, SG_DEBUG, "FGAirport::processThreshold: "
       "found runway not defined in the global data:" << ident() << "/" << id);
     return;
   }