How to enable qDebug and qInfo message in Virtualbox frontend ?

Discussions related to using the OSE version of VirtualBox.
Post Reply
atshaw
Posts: 11
Joined: 3. Jan 2013, 04:00
Primary OS: Debian other
VBox Version: OSE self-compiled
Guest OSses: Linux-based OSes, Windows, Other

How to enable qDebug and qInfo message in Virtualbox frontend ?

Post by atshaw »

Hi,

qDebug and qInfo messages are disabled in VirtualBox frontend and I didn't find how to enable them.

This simple Qt piece of code :

Code: Select all

#include <QDebug>

int main()
{
    qDebug("qDebug");
    qInfo("qInfo");
    qWarning("qWarning");
    qCritical("qCritical");
}
outputs this on stderr :

Code: Select all

qDebug
qInfo
qWarning
qCritical
But VirtualBox frontend only outputs :

Code: Select all

qWarning
qCritical
Even if I enable debug build with

Code: Select all

./configure -d
qDebug and qInfo remain disabled.

How can I enable them ?

Regards.
Post Reply