I saw this question already on this forum but i do not know why the proposed answer does not work in my case. So I try to ask for other slution.
I'm a complete newby in c++ Qt programming. I just got my Qt crator running under linux.
i do not understand why my:
cout << "This does not appear";
does not print in console while qdebug does
qDebug() << "This appears";
this is what is contained in my .pro file:
QT += core gui
TARGET = aaa
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
IeplcModule.cpp
HEADERS += mainwindow.h \
IeplcModule.h
FORMS += mainwindow.ui
#enable console
CONFIG += console
Any idea?
Cheers,
Stefano
cout << "This does not appear" << flush;Maybe this one? – Michas Sep 27 '11 at 8:13<iostream>equivalent ofqDebug()iscerr <<, that doesn't need flushing either. – MSalters Sep 27 '11 at 9:01