Catching stdout/stderr inside process
Last time I stuck with catching 3rd party error messages to log them manually. Library I’m using (Stackless 3.2.2) is doing all print out and error logging to stdout/stderr. This is very inconvinient for GUI app, when there is no console, but sometimes we need to get last printout. Then, I found good, working solution to catch stdout/stderr inside process and analyze/display it manually. There is code for this solution attached, feel free to use it as you want. Solution […] Continue reading