diff --git a/DrBotIRC.py b/DrBotIRC.py index 71fda73..06db472 100644 --- a/DrBotIRC.py +++ b/DrBotIRC.py @@ -165,7 +165,7 @@ class DrBotIRC(irclib.IRC): if host and port: self.funcs = DrBotzoMethods(self) - self.xmlrpc = SimpleXMLRPCServer((host, port)) + self.xmlrpc = SimpleXMLRPCServer((host, port), logRequests=False) self.xmlrpc.register_introspection_functions() self.xmlrpc.register_instance(self.funcs)