do not log requests
authorThomasV <thomasv@gitorious>
Mon, 19 Mar 2012 18:36:59 +0000 (21:36 +0300)
committerThomasV <thomasv@gitorious>
Mon, 19 Mar 2012 18:36:59 +0000 (21:36 +0300)
StratumJSONRPCServer.py

index da51826..9dcc3ec 100644 (file)
@@ -263,7 +263,7 @@ class StratumJSONRPCServer(SocketServer.TCPServer, StratumJSONRPCDispatcher):
     allow_reuse_address = True
 
     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):
         self.logRequests = logRequests
         StratumJSONRPCDispatcher.__init__(self, encoding)