From: James Turner Date: Wed, 26 Sep 2012 15:25:43 +0000 (+0100) Subject: Quieten down autopilot creation log. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=1be2aa558f7157cf3f486ffcdf1ceee9f0ff0a0a;p=flightgear.git Quieten down autopilot creation log. --- diff --git a/src/Autopilot/autopilot.cxx b/src/Autopilot/autopilot.cxx index bf000210b..a4a593158 100644 --- a/src/Autopilot/autopilot.cxx +++ b/src/Autopilot/autopilot.cxx @@ -87,7 +87,7 @@ Autopilot::Autopilot( SGPropertyNode_ptr rootNode, SGPropertyNode_ptr configNode double updateInterval = node->getDoubleValue( "update-interval-secs", 0.0 ); - SG_LOG( SG_AUTOPILOT, SG_INFO, "adding autopilot component \"" << childName << "\" as \"" << component->get_name() << "\" with interval=" << updateInterval ); + SG_LOG( SG_AUTOPILOT, SG_DEBUG, "adding autopilot component \"" << childName << "\" as \"" << component->get_name() << "\" with interval=" << updateInterval ); add_component(component,updateInterval); } }