to create custom error logging mechanisms. The *format* argument is a
standard printf-style format string, where the additional arguments to
:meth:`log_message` are applied as inputs to the formatting. The client
- address and current date and time are prefixed to every message logged.
+ ip address and current date and time are prefixed to every message logged.
.. method:: version_string()
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))