do not log requests

This commit is contained in:
ThomasV 2012-03-19 21:36:59 +03:00
parent c738c62f01
commit dab865ca77
1 changed files with 1 additions and 1 deletions

View File

@ -263,7 +263,7 @@ class StratumJSONRPCServer(SocketServer.TCPServer, StratumJSONRPCDispatcher):
allow_reuse_address = True allow_reuse_address = True
def __init__(self, addr, requestHandler=StratumJSONRPCRequestHandler, def __init__(self, addr, requestHandler=StratumJSONRPCRequestHandler,
logRequests=True, encoding=None, bind_and_activate=True, logRequests=False, encoding=None, bind_and_activate=True,
address_family=socket.AF_INET): address_family=socket.AF_INET):
self.logRequests = logRequests self.logRequests = logRequests
StratumJSONRPCDispatcher.__init__(self, encoding) StratumJSONRPCDispatcher.__init__(self, encoding)