]> git.mxchange.org Git - simgear.git/blobdiff - simgear/io/sg_socket_udp.cxx
My old email address is no longer valid ... point to my web page.
[simgear.git] / simgear / io / sg_socket_udp.cxx
index d3f170413aa2be7ec914c5de0a0c05ec2a98bf0f..b3e4a57ecd0c96efc1b1a65b0d34905247a39ff4 100644 (file)
@@ -2,7 +2,7 @@
 //
 // Written by Curtis Olson, started November 1999.
 //
-// Copyright (C) 1999  Curtis L. Olson - curt@flightgear.org
+// Copyright (C) 1999  Curtis L. Olson - http://www.flightgear.org/~curt
 //
 // This program is free software; you can redistribute it and/or
 // modify it under the terms of the GNU General Public License as
@@ -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;
     }