How can I get debug output from my Qt applications?
Answer:
You can use qDebug() and have the output on the console. See the documentation:
http://doc.trolltech.com/4.3/qtglobal.html#qDebug
You also need to add "CONFIG += console" in your .pro file if you want to have output on the console.