]> git.mxchange.org Git - flightgear.git/blobdiff - src/Autopilot/analogcomponent.cxx
ITM radio calculations are only considered valid
[flightgear.git] / src / Autopilot / analogcomponent.cxx
index d32717d226ec3bba6a4a1e3e98025f965b651a20..752c3ecedbc9ab45fd3fa4ebfa76a10e2beb9f5d 100644 (file)
@@ -51,7 +51,7 @@ double AnalogComponent::clamp( double value ) const
 
 bool AnalogComponent::configure( const std::string & nodeName, SGPropertyNode_ptr configNode )
 {
-  SG_LOG( SG_AUTOPILOT, SG_BULK, "AnalogComponent::configure(" << nodeName << ")" << endl );
+  SG_LOG( SG_AUTOPILOT, SG_BULK, "AnalogComponent::configure(" << nodeName << ")" );
   if( Component::configure( nodeName, configNode ) )
     return true;
 
@@ -108,6 +108,6 @@ bool AnalogComponent::configure( const std::string & nodeName, SGPropertyNode_pt
     return true;
   }
 
-  SG_LOG( SG_AUTOPILOT, SG_BULK, "AnalogComponent::configure(" << nodeName << ") [unhandled]" << endl );
+  SG_LOG( SG_AUTOPILOT, SG_BULK, "AnalogComponent::configure(" << nodeName << ") [unhandled]" );
   return false;
 }