Vincent Derelle
2013-10-31 20:17:00 UTC
Hello,
We wrote an internal tool inside our organisation in python. We're trying to get it to play nicely with supervisord. We came across the known python buffered output issue where the python child process does not
Write to the stdout log file. Instead we need to pass a -u parameter to the python interpreter in order to properly get the print statements written to the stdout log file. Our program also uses to Python logging
Librairy extensively. Unfortunately, even with specifying a -u parameter we are unable to get the logging.info("information displayed") lines written to the stdout logfile.
Is anyone aware of this bug? Is there any fix for it?
Thank you,
Vincent
We wrote an internal tool inside our organisation in python. We're trying to get it to play nicely with supervisord. We came across the known python buffered output issue where the python child process does not
Write to the stdout log file. Instead we need to pass a -u parameter to the python interpreter in order to properly get the print statements written to the stdout log file. Our program also uses to Python logging
Librairy extensively. Unfortunately, even with specifying a -u parameter we are unable to get the logging.info("information displayed") lines written to the stdout logfile.
Is anyone aware of this bug? Is there any fix for it?
Thank you,
Vincent