How to get STDOUT from a QProcess?

Before starting your process call:

process.setProcessChannelMode(QProcess::MergedChannels);

It will cause printing everything (even STDERR output) to STDOUT output.

Leave a Comment