summaryrefslogtreecommitdiffstats
path: root/examples/bluetooth
diff options
context:
space:
mode:
authorAlex Blasche <alexander.blasche@digia.com>2013-12-16 16:02:37 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-12-20 09:06:10 +0100
commit94f862e2786c5e9b558ae6ab6f524842949c0953 (patch)
tree8905bcdae7592fb1ca26ea43e3330b03b62dbede /examples/bluetooth
parentf661b7fbb19d845b23450c57127020ee86df578d (diff)
Use QLoggingCategory to categorize the various debug output streams
Task-number: QTBUG-32253 Change-Id: I193162407d0fc7eca83689e31f03e1641a494ab0 Reviewed-by: Fabian Bumberger <fbumberger@rim.com> Reviewed-by: Alex Blasche <alexander.blasche@digia.com>
Diffstat (limited to 'examples/bluetooth')
-rw-r--r--examples/bluetooth/scanner/qmlscanner.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/bluetooth/scanner/qmlscanner.cpp b/examples/bluetooth/scanner/qmlscanner.cpp
index 3602674b..47d0bb26 100644
--- a/examples/bluetooth/scanner/qmlscanner.cpp
+++ b/examples/bluetooth/scanner/qmlscanner.cpp
@@ -41,9 +41,11 @@
#include <QtGui/QGuiApplication>
#include <QtQuick/QQuickView>
#include <QtQml/QQmlEngine>
+#include <QtCore/QLoggingCategory>
int main(int argc, char *argv[])
{
+ //QLoggingCategory::setFilterRules(QStringLiteral("qt.bluetooth* = true"));
QGuiApplication application(argc, argv);
const QString mainQmlApp = QLatin1String("qrc:/scanner.qml");
QQuickView view;