diff options
author | Kai Koehne <kai.koehne@nokia.com> | 2011-11-28 12:43:00 +0100 |
---|---|---|
committer | Kai Koehne <kai.koehne@nokia.com> | 2011-11-28 14:05:42 +0100 |
commit | e2773a9fc4450dbc8cb1e0736252e7520b5e6bd1 (patch) | |
tree | d2b6c190222c978e0658ff6a58f5a41a8182ca87 /src/declarative/qml | |
parent | c26418bb8d0889beb6d4ec36a40fbf0c7ca69c97 (diff) | |
download | qt4-tools-e2773a9fc4450dbc8cb1e0736252e7520b5e6bd1.tar.gz |
Declarative: Use qDebug() for debugger status updates
Although "Qml debugging is enabled. Only use this in a safe environment!"
is a warning, using qWarning() for it let every app crash that is run with
QT_FATAL_WARNINGS. Fix that by using qDebug() for the updates that
happen during 'normal' operation.
Reviewed-by: Aurindam Jana <aurindam.jana@nokia.com>
Change-Id: Ie37a35ca27ec6e507f7de140484ca8cf96410be2
Diffstat (limited to 'src/declarative/qml')
-rw-r--r-- | src/declarative/qml/qdeclarativeengine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/qml/qdeclarativeengine.cpp b/src/declarative/qml/qdeclarativeengine.cpp index 89a9809406..63a676ee55 100644 --- a/src/declarative/qml/qdeclarativeengine.cpp +++ b/src/declarative/qml/qdeclarativeengine.cpp @@ -1089,7 +1089,7 @@ QDeclarativeDebuggingEnabler::QDeclarativeDebuggingEnabler() { #ifndef QDECLARATIVE_NO_DEBUG_PROTOCOL if (!QDeclarativeEnginePrivate::qml_debugging_enabled) { - qWarning("Qml debugging is enabled. Only use this in a safe environment!"); + qDebug("Qml debugging is enabled. Only use this in a safe environment!"); } QDeclarativeEnginePrivate::qml_debugging_enabled = true; #endif |