From 1be2aa558f7157cf3f486ffcdf1ceee9f0ff0a0a Mon Sep 17 00:00:00 2001 From: James Turner Date: Wed, 26 Sep 2012 16:25:43 +0100 Subject: [PATCH] Quieten down autopilot creation log. --- src/Autopilot/autopilot.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } }