summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Blasche <alexander.blasche@qt.io>2018-09-12 09:07:38 +0200
committerAlex Blasche <alexander.blasche@qt.io>2018-09-14 12:15:13 +0000
commit7e4166a6ab72a3b52e471f7e694a73bb4fcee109 (patch)
treeb562754c414b85d73f695a90cac813888b3b0e07
parentc4efc2638a107d54ed5df82d6cc1f5d071611c34 (diff)
Fix wrong logging message
This was caused by mindless copy & paste. Change-Id: I129a5f52753e7aa825cf7f6337b5f24644d9b9a0 Reviewed-by: Oliver Wolff <oliver.wolff@qt.io> Reviewed-by: Timur Pocheptsov <timur.pocheptsov@qt.io>
-rw-r--r--src/bluetooth/qlowenergycontroller_bluezdbus.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bluetooth/qlowenergycontroller_bluezdbus.cpp b/src/bluetooth/qlowenergycontroller_bluezdbus.cpp
index 68d63f73..441eca6b 100644
--- a/src/bluetooth/qlowenergycontroller_bluezdbus.cpp
+++ b/src/bluetooth/qlowenergycontroller_bluezdbus.cpp
@@ -896,7 +896,7 @@ void QLowEnergyControllerPrivateBluezDBus::scheduleNextJob()
const GattJob nextJob = jobs.constFirst();
QSharedPointer<QLowEnergyServicePrivate> service = serviceForHandle(nextJob.handle);
if (service.isNull() || !dbusServices.contains(service->uuid)) {
- qCWarning(QT_BT_BLUEZ) << "Invalid GATT job (scheduleReadChar). Skipping.";
+ qCWarning(QT_BT_BLUEZ) << "Invalid GATT job (scheduleNextJob). Skipping.";
prepareNextJob();
return;
}