1
0
Fork 0

Quieten down autopilot creation log.

This commit is contained in:
James Turner 2012-09-26 16:25:43 +01:00
parent a67d8e1983
commit 1be2aa558f

View file

@ -87,7 +87,7 @@ Autopilot::Autopilot( SGPropertyNode_ptr rootNode, SGPropertyNode_ptr configNode
double updateInterval = node->getDoubleValue( "update-interval-secs", 0.0 ); 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); add_component(component,updateInterval);
} }
} }