commit 16c7172248403731023fc0903a5ec9269c074d6e
Author: Arturo Filastò <art(a)fuffa.org>
Date: Fri Sep 6 00:34:46 2013 +0200
Remove debugging code.
---
ooni/nettest.py | 4 ----
1 file changed, 4 deletions(-)
diff --git a/ooni/nettest.py b/ooni/nettest.py
index f4d51a2..f68148b 100644
--- a/ooni/nettest.py
+++ b/ooni/nettest.py
@@ -453,10 +453,6 @@ class NetTestState(object):
def checkAllTasksDone(self):
log.debug("Checking all tasks for completion %s == %s" %
(self.doneTasks, self.tasks))
- with open('task_count_log.txt', 'a+') as f:
- diff = int(self.tasks) - int(self.doneTasks)
- f.write("%s, %s, %s, %s\n" % (otime.timestamp(), self.doneTasks, self.tasks, diff))
-
if self.completedScheduling and \
self.doneTasks == self.tasks:
self.allTasksDone.callback(self.doneTasks)