summaryrefslogtreecommitdiffstats
path: root/src/bluetooth/qbluetoothtransferreply_bluez.cpp
diff options
context:
space:
mode:
authorFabian Bumberger <fbumberger@rim.com>2013-09-17 16:30:32 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-18 17:24:33 +0200
commit9fa7195f0f2b8e7148215df564240dbfdad34935 (patch)
treeadf84afa4cb65801c633186f59e9e8ea8d253edd /src/bluetooth/qbluetoothtransferreply_bluez.cpp
parent4810f41772cd0b86f04064f556d2c88cdc4a548f (diff)
Lower the verbosity of bluetooth
Remove some qDebug statements and change qDebugs to qWarning in case of an error. Task-number: QTBUG-32253 Change-Id: Ia647d3f485cae56cc9f9c6725400f5b4617b7bf7 Reviewed-by: Alex Blasche <alexander.blasche@digia.com>
Diffstat (limited to 'src/bluetooth/qbluetoothtransferreply_bluez.cpp')
-rw-r--r--src/bluetooth/qbluetoothtransferreply_bluez.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bluetooth/qbluetoothtransferreply_bluez.cpp b/src/bluetooth/qbluetoothtransferreply_bluez.cpp
index 468f2d80..3c63adeb 100644
--- a/src/bluetooth/qbluetoothtransferreply_bluez.cpp
+++ b/src/bluetooth/qbluetoothtransferreply_bluez.cpp
@@ -76,7 +76,7 @@ QBluetoothTransferReplyBluez::QBluetoothTransferReplyBluez(QIODevice *input, con
bool res = QDBusConnection::sessionBus().registerObject(m_agent_path, this);
if(!res)
- qDebug() << "Failed Creating dbus objects";
+ qWarning() << "Failed Creating dbus objects";
qRegisterMetaType<QBluetoothTransferReply*>("QBluetoothTransferReply*");
QMetaObject::invokeMethod(this, "start", Qt::QueuedConnection);
@@ -264,7 +264,7 @@ void QBluetoothTransferReplyBluez::abort()
QDBusPendingReply<> reply = xfer->Cancel();
reply.waitForFinished();
if(reply.isError()){
- qDebug() << "Failed to abort transfer" << reply.error();
+ qWarning() << "Failed to abort transfer" << reply.error();
}
delete xfer;
}