]> git.mxchange.org Git - flightgear.git/blobdiff - src/Navaids/navdb.cxx
Merge branch 'next' into durk-atc
[flightgear.git] / src / Navaids / navdb.cxx
index 96d38c153ed49077e5d4ecb47429431534bd60ca..b1a813d6173f61a4d9ddc1aaa901c9bd5eec24b7 100644 (file)
@@ -297,12 +297,12 @@ FGRunway* getRunwayFromName(const std::string& aName)
   
   const FGAirport* apt = fgFindAirportID(parts[0]);
   if (!apt) {
-    SG_LOG(SG_GENERAL, SG_WARN, "navaid " << aName << " associated with bogus airport ID:" << parts[0]);
+    SG_LOG(SG_GENERAL, SG_DEBUG, "navaid " << aName << " associated with bogus airport ID:" << parts[0]);
     return NULL;
   }
   
   if (!apt->hasRunwayWithIdent(parts[1])) {
-    SG_LOG(SG_GENERAL, SG_WARN, "navaid " << aName << " associated with bogus runway ID:" << parts[1]);
+    SG_LOG(SG_GENERAL, SG_DEBUG, "navaid " << aName << " associated with bogus runway ID:" << parts[1]);
     return NULL;
   }