jobqueue: Log datetimes correctly (minor change) (#1714)

This commit is contained in:
Bibo-Joshi 2020-01-26 22:08:33 +01:00 committed by Noam Meltzer
parent cb9af36937
commit 0df526d390

View file

@ -102,7 +102,7 @@ class JobQueue(object):
next_t = to_float_timestamp(time_spec, reference_timestamp=previous_t)
# enqueue:
self.logger.debug('Putting job %s with t=%f', job.name, time_spec)
self.logger.debug('Putting job %s with t=%s', job.name, time_spec)
self._queue.put((next_t, job))
# Wake up the loop if this job should be executed next