summaryrefslogtreecommitdiff
path: root/src/leap/bitmask/backend/backend.py
diff options
context:
space:
mode:
authorIvan Alejandro <ivanalejandro0@gmail.com>2014-07-09 16:14:58 -0300
committerIvan Alejandro <ivanalejandro0@gmail.com>2014-07-14 12:15:25 -0300
commitd8152277022eedf5a88c84cc5f099b2fc9ad6e46 (patch)
treea55e093d47fa4ffd137559105268bd2b5a7ee3a4 /src/leap/bitmask/backend/backend.py
parentd33e9a2bc07ccd983a1321b254cc27ca6be989a3 (diff)
Comment out overly verbose logs for communication.
Diffstat (limited to 'src/leap/bitmask/backend/backend.py')
-rw-r--r--src/leap/bitmask/backend/backend.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/leap/bitmask/backend/backend.py b/src/leap/bitmask/backend/backend.py
index 5f696f75..833f4368 100644
--- a/src/leap/bitmask/backend/backend.py
+++ b/src/leap/bitmask/backend/backend.py
@@ -86,7 +86,7 @@ class Backend(object):
try:
request = self._zmq_socket.recv(zmq.NOBLOCK)
self._zmq_socket.send("OK")
- logger.debug("Received request: '{0}'".format(request))
+ # logger.debug("Received request: '{0}'".format(request))
self._process_request(request)
except zmq.ZMQError as e:
if e.errno != zmq.EAGAIN:
@@ -180,8 +180,8 @@ class Backend(object):
if kwargs is not None:
method = lambda: func(**kwargs)
- logger.debug("Running method: '{0}' "
- "with args: '{1}' in a thread".format(api_method, kwargs))
+ # logger.debug("Running method: '{0}' "
+ # "with args: '{1}' in a thread".format(api_method, kwargs))
# run the action in a thread and keep track of it
d = threads.deferToThread(method)