From 60af52707c7716dd373689e61d7cb4c01c5c9a44 Mon Sep 17 00:00:00 2001 From: Stuart Buchanan Date: Sat, 30 Jun 2012 20:50:57 +0100 Subject: [PATCH] Reduce severity of a failure to create a marker beacon due to an unknown runway from ALERT to WARN. Not particularly relevant error message for most users. --- src/Navaids/markerbeacon.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Navaids/markerbeacon.cxx b/src/Navaids/markerbeacon.cxx index 2192ae514..0af44c3a4 100644 --- a/src/Navaids/markerbeacon.cxx +++ b/src/Navaids/markerbeacon.cxx @@ -53,7 +53,7 @@ FGMarkerBeaconRecord::create(int aTy, const string& aName, const SGGeod& aPos) FGRunway* runway = getRunwayFromName(aName); if (!runway) { - SG_LOG(SG_GENERAL, SG_ALERT, "Failed to create beacon for unknown runway '" << aName << "'."); + SG_LOG(SG_GENERAL, SG_WARN, "Failed to create beacon for unknown runway '" << aName << "'."); return NULL; } SGGeod pos(aPos);