Probably the best way is to subclass BaseHTTPServer and overwrite the log_request method. Something like class quietHTTPServer(BaseHTTPServer): def log_request(self, code): pass HTH Alex.