Hi,

An example logging server code in the following url gives an error:
http://docs.python.org/howto/logging-cookbook.html#sending-and-receiving-logging-events-across-a-network

It seems that the code has typos.

import socketserver

should be 

import SocketServer

I am using Python 2.7.3, FYI.

Regards.