]> git.mxchange.org Git - flightgear.git/commitdiff
Convert several alert/info statements to debug.
authorcurt <curt>
Thu, 1 Aug 2002 21:51:09 +0000 (21:51 +0000)
committercurt <curt>
Thu, 1 Aug 2002 21:51:09 +0000 (21:51 +0000)
src/FDM/ExternalNet.cxx

index 7abe27de3b84a7f996d291588294564baabe99d1..974c4178325bdd49785e3204910bc355cc102f3c 100644 (file)
@@ -384,15 +384,15 @@ void FGExternalNet::update( double dt ) {
     length = sizeof(ctrls);
     global2raw( &ctrls );
     if ( data_client.send( (char *)(& ctrls), length, 0 ) != length ) {
-       SG_LOG( SG_IO, SG_ALERT, "Error writing data." );
+       SG_LOG( SG_IO, SG_DEBUG, "Error writing data." );
     } else {
-       SG_LOG( SG_IO, SG_ALERT, "wrote control data." );
+       SG_LOG( SG_IO, SG_DEBUG, "wrote control data." );
     }
 
     // Read next set of FDM data (blocking enabled to maintain 'sync')
     length = sizeof(fdm);
     while ( (result = data_server.recv( (char *)(& fdm), length, 0)) >= 0 ) {
-       SG_LOG( SG_IO, SG_INFO, "Success reading data." );
+       SG_LOG( SG_IO, SG_DEBUG, "Success reading data." );
        net2global( &fdm );
     }
 }