Troubleshooting

This commit is contained in:
2024-04-09 00:13:20 +02:00
parent 286fcd92ce
commit e5f26566ca
+2 -2
View File
@@ -2255,11 +2255,11 @@ if __name__ == "__main__":
#threads.append(threading.Thread(target=client.run, args=(TOKEN,)))
i = 0
for worker in threads:
print(i)
logger.info(i)
worker.start()
i+=1
for worker in threads:
print(i)
logger.info(i)
worker.join()
i+=1