I need to see the qDebug or qWarning output from C++ that is generated when an android service runs in Qt, in order to debug faster and easier.
But, since the android service in Qt runs on a separate process, I cannot see qDebug that is generated from the C++ service code. For ex. by using: qWarning("Hello");
as I normally do in the app C++ code.
Is there a way?
N.B Using logcat, I was able to see the messages from the java class that starts the service only. See this & this.
But now i want to display qDebug messages from the C++ code of the service.