]> git.mxchange.org Git - flightgear.git/blobdiff - src/Network/native.cxx
Updated adf property names.
[flightgear.git] / src / Network / native.cxx
index 83682604fdc11e45eefd6368f11e8c025fbbbdd3..c2e94190e42e0bb5185188f42997f8bc085054cf 100644 (file)
@@ -22,7 +22,6 @@
 
 
 #include <simgear/debug/logstream.hxx>
-#include <simgear/math/fg_geodesy.hxx>
 #include <simgear/io/iochannel.hxx>
 
 #include "native.hxx"
@@ -38,7 +37,7 @@ FGNative::~FGNative() {
 // open hailing frequencies
 bool FGNative::open() {
     if ( is_enabled() ) {
-       FG_LOG( FG_IO, FG_ALERT, "This shouldn't happen, but the channel " 
+       SG_LOG( SG_IO, SG_ALERT, "This shouldn't happen, but the channel " 
                << "is already in use, ignoring" );
        return false;
     }
@@ -46,7 +45,7 @@ bool FGNative::open() {
     SGIOChannel *io = get_io_channel();
 
     if ( ! io->open( get_direction() ) ) {
-       FG_LOG( FG_IO, FG_ALERT, "Error opening channel communication layer." );
+       SG_LOG( SG_IO, SG_ALERT, "Error opening channel communication layer." );
        return false;
     }
 
@@ -65,18 +64,18 @@ bool FGNative::process() {
        // cout << "size of cur_fdm_state = " << length << endl;
        buf = *cur_fdm_state;
        if ( ! io->write( (char *)(& buf), length ) ) {
-           FG_LOG( FG_IO, FG_ALERT, "Error writing data." );
+           SG_LOG( SG_IO, SG_ALERT, "Error writing data." );
            return false;
        }
     } 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." );
+               SG_LOG( SG_IO, SG_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." );
+               SG_LOG( SG_IO, SG_DEBUG, "Success reading data." );
                *cur_fdm_state = buf;
            }
        }