This commit is contained in:
机器人总动员 2021-05-09 12:56:38 +08:00
parent e9818fb6fa
commit b4e2c94bd4

View File

@ -45,7 +45,7 @@ def do_task():
group = task_queue.get() group = task_queue.get()
try: try:
print("---------------------------") print("---------------------------")
print("群组: {} | 分析处理中...".format(group)) print("群组: {} | 分析处理中... | 剩余任务数量 {}".format(group, task_queue.qsize()))
start_time = float(time.time()) start_time = float(time.time())
generate(group) generate(group)
stop_time = float(time.time()) stop_time = float(time.time())