From fed62b13ddd52afc01b6f56a9c5c5e21b147ea74 Mon Sep 17 00:00:00 2001 From: Torsten Dreyer Date: Wed, 25 Aug 2010 20:43:43 +0200 Subject: [PATCH] Downgrade two autopilot SG_LOG alerts to warnings --- src/Autopilot/autopilot.cxx | 2 +- src/Autopilot/autopilotgroup.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Autopilot/autopilot.cxx b/src/Autopilot/autopilot.cxx index 809001d61..089789d67 100644 --- a/src/Autopilot/autopilot.cxx +++ b/src/Autopilot/autopilot.cxx @@ -101,7 +101,7 @@ void Autopilot::add_component( Component * component ) name = buf.str(); } if( name != component->get_name() ) - SG_LOG( SG_ALL, SG_ALERT, "Duplicate autopilot component " << component->get_name() << ", renamed to " << name ); + SG_LOG( SG_ALL, SG_WARN, "Duplicate autopilot component " << component->get_name() << ", renamed to " << name ); set_subsystem( name.c_str(), component ); } diff --git a/src/Autopilot/autopilotgroup.cxx b/src/Autopilot/autopilotgroup.cxx index cda65d89d..59d630800 100644 --- a/src/Autopilot/autopilotgroup.cxx +++ b/src/Autopilot/autopilotgroup.cxx @@ -112,7 +112,7 @@ void FGXMLAutopilotGroupImplementation::initFrom( SGPropertyNode_ptr rootNode, c apName = buf.str(); } if( apName != name ) - SG_LOG( SG_ALL, SG_ALERT, "Duplicate property-rule configuration name " << name << ", renamed to " << apName ); + SG_LOG( SG_ALL, SG_WARN, "Duplicate property-rule configuration name " << name << ", renamed to " << apName ); } SGPath config = globals->resolve_maybe_aircraft_path(pathNode->getStringValue());