]> git.mxchange.org Git - flightgear.git/commitdiff
Downgrade two autopilot SG_LOG alerts to warnings
authorTorsten Dreyer <Torsten@t3r.de>
Wed, 25 Aug 2010 18:43:43 +0000 (20:43 +0200)
committerTorsten Dreyer <Torsten@t3r.de>
Wed, 25 Aug 2010 18:43:43 +0000 (20:43 +0200)
src/Autopilot/autopilot.cxx
src/Autopilot/autopilotgroup.cxx

index 809001d617bd4e32fa014cc1887cc93b4c74e826..089789d6715bc3a2e886a4979f26dac499c40cbb 100644 (file)
@@ -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 );
 }
index cda65d89d79f35090784ab81700928b2508cdba9..59d630800f9639014f9b4ec533f9fb22cc7f1627 100644 (file)
@@ -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());