]> git.mxchange.org Git - flightgear.git/blobdiff - src/Network/native.cxx
SG_ namespace
[flightgear.git] / src / Network / native.cxx
index 07da1e73cb739c66d811f4dc77b77eee95d674e3..e673f6438f8782e85a5e4acfa1de41f239b221ef 100644 (file)
@@ -70,12 +70,12 @@ bool FGNative::process() {
     } else if ( get_direction() == SG_IO_IN ) {
        if ( io->get_type() == sgFileType ) {
            if ( io->read( (char *)(& buf), length ) == length ) {
-               FG_LOG( FG_IO, FG_ALERT, "Success reading data." );
+               FG_LOG( FG_IO, FG_DEBUG, "Success reading data." );
                *cur_fdm_state = buf;
            }
        } else {
            while ( io->read( (char *)(& buf), length ) == length ) {
-               FG_LOG( FG_IO, FG_ALERT, "Success reading data." );
+               FG_LOG( FG_IO, FG_DEBUG, "Success reading data." );
                *cur_fdm_state = buf;
            }
        }