PDA

View Full Version : Application output pane



stef13013
30th June 2013, 11:05
With QtCreator 2.8 under Win7 with CDB debugger, I noticed that all my fprintf(stdout) stuff are not displayed into the **Application Output** tab
(I added CONFIG+= console)

I tried:
fprintf(stderr, "...");

fprintf(stdout, "..."); fflush(stdout);

Nothing happens (But the "Run in terminal" option works !?)

In fact, I noticed that all the output goes to the "debugger log"


Any idea ?

saman_artorious
30th June 2013, 17:54
#include <qDebug>

qDebug() << "text";

stef13013
30th June 2013, 18:31
Yes, but I don't want qDebug() for now...

And even if I add it, still doesn't display on App. pane :(
(I'm under QtCreator 2.8 rc)