Can I filter out qDebug() messages in Qt Creator's Application Output?
Qt Creator and other tools
3
Posts
2
Posters
3.5k
Views
1
Watching
-
I mistakenly assumed that you need a filter messages in your application. Then "qInstallMessageHandler":http://qt-project.org/doc/qt-5/qtglobal.html#qInstallMessageHandler would be useful.
But it does not help to filter the application messages in QtCreator.In QtCreator project setting, run configuration you can select custom executable.
On Linux development host you can create a script that will start your app and then filter out all unnecessary messages.
I have not tried to use QtCreator for android development yet so don't know if start app through a script will work for android.