summaryrefslogtreecommitdiffstats
path: root/src/bluetooth/osx
diff options
context:
space:
mode:
authorTimur Pocheptsov <Timur.Pocheptsov@digia.com>2014-12-05 14:54:08 +0100
committerTimur Pocheptsov <Timur.Pocheptsov@digia.com>2014-12-05 15:51:16 +0100
commit776f23147a90f8d9c394a00574d365fec57ff904 (patch)
treeae4d2a9e78f4f3bec02bef54e60e58d108993d41 /src/bluetooth/osx
parent1a7e79849ec0575d09231cfac3e7ea453f2fe932 (diff)
QLowEnergyController - remove debug messages (OS X, iOS)
Remove debug messages from OSXBTCentralManager. Change-Id: I980ffac49453b670fa93d4ddfb0e621e29dff4f3 Reviewed-by: Alex Blasche <alexander.blasche@theqtcompany.com>
Diffstat (limited to 'src/bluetooth/osx')
-rw-r--r--src/bluetooth/osx/osxbtcentralmanager.mm3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/bluetooth/osx/osxbtcentralmanager.mm b/src/bluetooth/osx/osxbtcentralmanager.mm
index 733d73a6..5c4a5c87 100644
--- a/src/bluetooth/osx/osxbtcentralmanager.mm
+++ b/src/bluetooth/osx/osxbtcentralmanager.mm
@@ -612,8 +612,6 @@ using namespace QT_NAMESPACE;
// TODO: check what happens if I'm using NSData with length 0.
if (request.withResponse) {
- NSLog(@"trying to write %@", data.data());
- NSLog(@"initial value: %@", ch.value);
writePending = true;
[peripheral writeValue:data.data() forCharacteristic:ch
type:CBCharacteristicWriteWithResponse];
@@ -1386,7 +1384,6 @@ using namespace QT_NAMESPACE;
const QLowEnergyHandle cHandle = charMap.key(characteristic);
Q_ASSERT_X(cHandle, "-peripheral:didWriteValueForCharacteristic:error",
"invalid handle, not found in the characteristics map");
- NSLog(@"characteristic written, the value is %@", characteristic.value);
delegate->characteristicWriteNotification(cHandle, qt_bytearray(characteristic.value));
}