aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2012-08-20 16:27:01 +0000
committerRob Austein <sra@hactrn.net>2012-08-20 16:27:01 +0000
commitecd8fee515d6c0f768d45f1a36405220201864ea (patch)
tree358e707fbaa88482586c450f47c69a9b4855a78c
parent40bcc9d68004023b09b84a37e637d3410d5322ad (diff)
Gigabytes of logs recording the state of the task queue when hosting
thousands of <self/> objects is perhaps a bit excessive. svn path=/branches/tk274/; revision=4645
-rw-r--r--rpkid/rpki/rpkid.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/rpkid/rpki/rpkid.py b/rpkid/rpki/rpkid.py
index fa20c01e..4ed232a3 100644
--- a/rpkid/rpki/rpkid.py
+++ b/rpkid/rpki/rpkid.py
@@ -328,8 +328,6 @@ class main(object):
"""
Add a task to the scheduler task queue, unless it's already queued.
"""
- rpki.log.debug("New task %r" % task)
- rpki.log.debug("Task queue %r" % self.task_queue)
if task not in self.task_queue:
rpki.log.debug("Adding %r to task queue" % task)
self.task_queue.append(task)