I have a hierarchy of Qt-based apps on Windows. One GUI app has started another console app (but without visible console window) via QProcess::startDetached
. I would like to attach to this console app with debugger from the QtCreator. But after attaching I don't see any console output (the standard "Application output" tab Alt+3 is empty).
When I run console app separately from the QtCreator I see the "qtcreator_process_stub.exe console" which shows me all output.
Is there a way to see console output after attaching to the running process in my case, i.e. without restarting it as separate app?