How to display output from Qt Android service process in QtCreator?
-
wrote on 15 Aug 2020, 20:33 last edited by morte
How to display output from Qt Android service in QtCreator (qDebug() and Log.i() messages) in QtCreator?
'Application output' shows output from main process but service runs in different process. -
How to display output from Qt Android service in QtCreator (qDebug() and Log.i() messages) in QtCreator?
'Application output' shows output from main process but service runs in different process.wrote on 16 Aug 2020, 06:47 last edited by JonB@morte
QtService seems to be a wrapper for Linux demons or Windows services. By definition you won't be able to access any output it produces, since it's in a quite separate process and any output it produces will go elsewhere (probably nowhere). It would be more usual for any output a service wants to produce to go to a file/the system's "event log", but that is done within the service. -
wrote on 19 Aug 2020, 01:26 last edited by
It's not implemented currently on Qt Creator 4.12/4.13.
Created bugreport with suggestion to add that feature https://bugreports.qt.io/browse/QTCREATORBUG-24496 -
It's not implemented currently on Qt Creator 4.12/4.13.
Created bugreport with suggestion to add that feature https://bugreports.qt.io/browse/QTCREATORBUG-24496wrote on 19 Aug 2020, 11:14 last edited by@morte
Good luck for them choosing or being able to do anything about it. Since, as you say, the service is running in a separate process I don't think you'll get the debug output from that process while you are debugging your main process.... -
@morte
Good luck for them choosing or being able to do anything about it. Since, as you say, the service is running in a separate process I don't think you'll get the debug output from that process while you are debugging your main process....
1/6