Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authoramartin <olpc@xo-00-CE-12.localdomain>2007-11-02 22:01:09 (GMT)
committer amartin <olpc@xo-00-CE-12.localdomain>2007-11-02 22:01:09 (GMT)
commita1f90e1dde9c6117794a076021bff2b717dcabf5 (patch)
treef0eb2c9f69ef034d20753b163c86856f1ff0548e /common
parentb0839a170b241e6498b91c792535f3b5a0ee76b5 (diff)
network
Diffstat (limited to 'common')
-rw-r--r--common/Util/Network.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/Util/Network.py b/common/Util/Network.py
index 6c3432d..992f570 100644
--- a/common/Util/Network.py
+++ b/common/Util/Network.py
@@ -405,14 +405,14 @@ class Network:
if self.mode == MD_PEER:
try:
self.socket.send( msg )
- print "Network:: sent %d bytes" % (len(msg))
+ #print "Network:: sent %d bytes" % (len(msg))
except socket.error, (value, errmsg):
print "Network:: FAILED to send message (%s) to %s: %s" % (MSG_NAME[message], self.hostAddress[0], errmsg)
# TODO something intelligent
else: # MD_HOST
try:
to.send( msg )
- print "Network:: sent %d bytes" % (len(msg))
+ #print "Network:: sent %d bytes" % (len(msg))
except socket.error, (value, errmsg):
print "Network:: FAILED to send message (%s) to %s: %s" % (MSG_NAME[message], self.connection[to].address[0], errmsg)
# TODO something intelligent