What is the right way to write to stdout in a Qt Console Project?

This appears to be a popular question, which is commonly answered with "use qDebug() << QString(...)".
Indeed, that is exactly what i want, but qDebug() writes to stderr, not stdout.

What would be the stdout equivalent to qDebug()?