]> git.mxchange.org Git - simgear.git/commitdiff
Be a little quieter at the default debug level.
authordavid <david>
Sat, 7 Feb 2004 21:36:20 +0000 (21:36 +0000)
committerdavid <david>
Sat, 7 Feb 2004 21:36:20 +0000 (21:36 +0000)
simgear/io/sg_serial.cxx
simgear/io/sg_socket.cxx
simgear/io/sg_socket_udp.cxx

index 6145709294b419ac55254dde59e42cd0cc7ca1c0..fcffdf68ae1f45232a1604830349c9865e3c39a0 100644 (file)
@@ -133,7 +133,7 @@ int SGSerial::write( const char *buf, const int length ) {
     int result = port.write_port( buf, length );
 
     if ( result != length ) {
-       SG_LOG( SG_IO, SG_ALERT, "Error writing data: " << device );
+       SG_LOG( SG_IO, SG_WARN, "Error writing data: " << device );
     }
 
     return result;
index 7407f6ec99fb2e2413af2cdea3cea4cb9d9a9538..e642639acd5f334e05881ce48b190a217006154d 100644 (file)
@@ -331,7 +331,7 @@ SGSocket::write( const char *buf, const int length )
 
     if ( s->send( buf, length ) < 0 )
     {
-       SG_LOG( SG_IO, SG_ALERT, "Error writing to socket: " << port );
+       SG_LOG( SG_IO, SG_WARN, "Error writing to socket: " << port );
        error_condition = true;
     }
 
index d3f170413aa2be7ec914c5de0a0c05ec2a98bf0f..278acd9b2291a2afa7f37cd81c76feff6a72d361 100644 (file)
@@ -162,7 +162,7 @@ int SGSocketUDP::write( const char *buf, const int length ) {
     bool error_condition = false;
 
     if ( sock.send( buf, length, 0 ) < 0 ) {
-       SG_LOG( SG_IO, SG_ALERT, "Error writing to socket: " << port );
+       SG_LOG( SG_IO, SG_WARN, "Error writing to socket: " << port );
        error_condition = true;
        return 0;
     }