summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--distbuild/mainloop.py2
-rw-r--r--distbuild/worker_build_scheduler.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/distbuild/mainloop.py b/distbuild/mainloop.py
index d4aaf091..e7c0cc3b 100644
--- a/distbuild/mainloop.py
+++ b/distbuild/mainloop.py
@@ -103,9 +103,7 @@ class MainLoop(object):
self.queue_event(event_source, event)
for event_source, event in self._dequeue_events():
- logging.debug('-----')
for machine in self._machines[:]:
- logging.debug('SOTK-DEBUGS: %s' % machine)
for new_event in machine.handle_event(event_source, event):
self.queue_event(event_source, new_event)
if machine.state is None:
diff --git a/distbuild/worker_build_scheduler.py b/distbuild/worker_build_scheduler.py
index 4b91bb6d..7b29c078 100644
--- a/distbuild/worker_build_scheduler.py
+++ b/distbuild/worker_build_scheduler.py
@@ -593,6 +593,8 @@ class WorkerConnection(distbuild.StateMachine):
logging.debug('Requesting shared artifact cache to get artifacts')
job = self._current_job
+ logging.debug('current: %s' % str(job.id))
+ logging.debug('active: %s' % str(self._active_jobs))
kind = job.artifact.source.morphology['kind']
if kind == 'chunk':