Note that I haven't actually tried this but, reading the
QT docs[
^] indicates that you could probably redirect stderr using something like this:
std::cerr.rdbuf(std::cout.rdbuf());
Do that at the start of the application and cerr should be written to the standard cout buffer (this assumes that you haven't done something daft like redirected cout beforehand).