diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2015-02-19 09:09:56 +0100 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2015-02-19 09:09:56 +0100 |
commit | ed2ec4bb64052d3ed8d2357abdc080aea4341811 (patch) | |
tree | 5a0484d4b4bde449e16b9370d830a92b16b11c7f /LinuxBluetooth.cpp | |
parent | 5460c461809294bb302be8aa6e80533ec30e28e4 (diff) | |
download | ble-toys-ed2ec4bb64052d3ed8d2357abdc080aea4341811.tar.gz ble-toys-ed2ec4bb64052d3ed8d2357abdc080aea4341811.tar.bz2 ble-toys-ed2ec4bb64052d3ed8d2357abdc080aea4341811.tar.xz ble-toys-ed2ec4bb64052d3ed8d2357abdc080aea4341811.zip |
o Successfully reading all characteristics.
Diffstat (limited to 'LinuxBluetooth.cpp')
-rw-r--r-- | LinuxBluetooth.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LinuxBluetooth.cpp b/LinuxBluetooth.cpp index 7733592..3d5cded 100644 --- a/LinuxBluetooth.cpp +++ b/LinuxBluetooth.cpp @@ -213,7 +213,7 @@ void LinuxBluetoothDevice::discoverServices() { } while (startHandle != 0xffff); for (auto &s : services) { - D << "service: " << to_string(s->getUuid()); + D << "service: " << to_string(s->getUuid()) << ", handle: " << s->getHandle() << ", end group handle: " << s->getEndGroupHandle(); } for (auto &s : services) { |