I want to use the same log file in multiple processes. But the processes aren't started with multiprocessing, so they have nothing shared.
While googling around, I have realised that I should make a LogHandler which receives the messages through a queue. The LogHandler then is the only process which writes to the file. But the problem is to share the queue with the other processes. How can I do that?