]> git.mxchange.org Git - flightgear.git/blobdiff - src/Network/httpd.hxx
Sync. w. JSBSim CVS
[flightgear.git] / src / Network / httpd.hxx
index 57c8a7484012d9bae37e3afc174f3a8798abf2c1..487ddd3f231a9ae16667fc342ffc4d206797c341 100644 (file)
@@ -20,7 +20,7 @@
 //
 // You should have received a copy of the GNU General Public License
 // along with this program; if not, write to the Free Software
-// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 //
 // $Id$
 
@@ -68,7 +68,7 @@ class HttpdServer : private netChannel
     virtual void handleAccept (void) {
         netAddress addr ;
         int handle = accept ( &addr ) ;
-        printf("Client %s:%d connected\n", addr.getHost(), addr.getPort());
+        SG_LOG( SG_IO, SG_INFO, "Client " << addr.getHost() << ":" << addr.getPort() << " connected" );
 
         HttpdChannel *hc = new HttpdChannel;
         hc->setHandle ( handle ) ;