Fix issue6085 - Remove the delay caused by fqdn lookup while logging in BaseHTTPRequestHandler
diff --git a/Lib/http/server.py b/Lib/http/server.py
index 80f58e6..5569037 100644
--- a/Lib/http/server.py
+++ b/Lib/http/server.py
@@ -508,13 +508,13 @@
         specified as subsequent arguments (it's just like
         printf!).
 
-        The client host and current date/time are prefixed to
+        The client ip and current date/time are prefixed to
         every message.
 
         """
 
         sys.stderr.write("%s - - [%s] %s\n" %
-                         (self.address_string(),
+                         (self.client_address[0],
                           self.log_date_time_string(),
                           format%args))