connector

This commit is contained in:
4tochka 2019-06-03 14:55:44 +04:00
parent 680bd58ef1
commit e0cf9781d9

View File

@ -497,7 +497,7 @@ class Connector:
/ self.destroyed_coins, 4)))
self.log.debug("---------------------")
t = int(time.time() - self.start_time)
t2 = int(time.time() - self.batch_time)
t2 = round(time.time() - self.batch_time, 2)
self.batch_time = time.time()
h, m, s = t // 3600, (t % 3600 ) // 60, (t % 3600) % 60
self.log.info("Total time %s:%s:%s; batch time: %s" % (h,m,s, t2))