DrBotIRC: don't log XML-RPC requests

This commit is contained in:
Brian S. Stephan 2012-07-28 09:55:54 -05:00
parent 83039d4d46
commit b1d2e06639
1 changed files with 1 additions and 1 deletions

View File

@ -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)