fix logging
parent
15b2a50817
commit
28889d8da5
|
@ -199,7 +199,9 @@ class PerDestinationQueue(object):
|
||||||
sleeptime = random.uniform(
|
sleeptime = random.uniform(
|
||||||
DEPRIORITISE_SLEEP_TIME, DEPRIORITISE_SLEEP_TIME * 2
|
DEPRIORITISE_SLEEP_TIME, DEPRIORITISE_SLEEP_TIME * 2
|
||||||
)
|
)
|
||||||
logger.info("TX [%s]: sleeping for %f seconds", sleeptime)
|
logger.info(
|
||||||
|
"TX [%s]: sleeping for %f seconds", self._destination, sleeptime
|
||||||
|
)
|
||||||
yield self._clock.sleep(sleeptime)
|
yield self._clock.sleep(sleeptime)
|
||||||
|
|
||||||
# We have to keep 2 free slots for presence and rr_edus
|
# We have to keep 2 free slots for presence and rr_edus
|
||||||
|
|
Loading…
Reference in New Issue