]> git.mxchange.org Git - flightgear.git/commitdiff
Assigned a couple output messages to the FG_DEBUG class.
authorcurt <curt>
Mon, 27 Apr 1998 03:35:00 +0000 (03:35 +0000)
committercurt <curt>
Mon, 27 Apr 1998 03:35:00 +0000 (03:35 +0000)
Autopilot/autopilot.c

index 3d4d0b98b1ef156078397834870d626e6032b315..8e380ba716ffd95bf06a5013d302badb36e2ea4f 100644 (file)
@@ -213,7 +213,7 @@ int fgAPRun( void )
                //assert(RelHeading > -180);
                
                // Now it is time to deterime how far we should be rolled.
-               fgPrintf( FG_COCKPIT, FG_INFO, "RelHeading:\n");
+               fgPrintf( FG_COCKPIT, FG_DEBUG, "RelHeading:\n");
                
                
                if ( abs(RelHeading) > APData->RollOut )  // We are further from heading than the roll out point
@@ -236,7 +236,7 @@ int fgAPRun( void )
                // Target Roll has now been Found.
                
                // Compare Target roll to Current Roll, Generate Rel Roll
-               fgPrintf( FG_COCKPIT, FG_INFO, "TargetRoll:\n");
+               fgPrintf( FG_COCKPIT, FG_DEBUG, "TargetRoll:\n");
                
                RelRoll = TargetRoll - fgAPget_roll();