Is there a way to log the stdout output from a given Process when using the multiprocessing.Process class in python?
|
4
|
|||||
|
|
|
The easiest way might be to just override
And running it: $ ls m.py $ python m.py $ ls 27493.out 27494.out m.py $ cat 27493.out function f module name: __main__ parent process: 27492 process id: 27493 hello bob $ cat 27494.out function f module name: __main__ parent process: 27492 process id: 27494 hello fred |
||
|
|
|
|
You can set I'm not sure what you mean by "a given" process (who's given it, what distinguishes it from all others...?), but if you mean you know what process you want to single out that way at the time you instantiate it, then you could wrap its Maybe if you nail down the specs a bit I can help in more detail...? |
||
|
|
