How can I see qDebug messages while debugging in QtCreator

前端 未结 7 1463
感动是毒
感动是毒 2021-02-04 06:38

I\'m making the transition from Eclipse CDT (with Qt integration plugin) to QtCreator 2.0 but there is still one thing that bother me with QtCreator :

When I debug in Qt

7条回答
  •  醉酒成梦
    2021-02-04 07:16

    Have you tried to add the following line to your .pro?

    OUTPUT += Console

    Then you can output on std::cout.

提交回复
热议问题