Logging thread with Queue and multiple threads to log messages

scriptlearner at gmail.com scriptlearner at gmail.com
Mon Nov 10 19:39:12 EST 2008


Thank you guys, indeed, calling join() for each thread actually solved
the problem.
I misunderstood it and call join() right after start() so it didn't
work the way I wanted.

   for i in range(args.threads):
        children[i].join()



More information about the Python-list mailing list