We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce3d340 commit f41f8c6Copy full SHA for f41f8c6
src/generic-ble.js
@@ -447,9 +447,12 @@ module.exports = function (RED) {
447
peripheral._connectHandlerSet = false;
448
peripheral.discoverAllServicesAndCharacteristics(
449
(err, services) => {
450
+ debug(
451
+ `<connectPeripheral${this.uuid}:discoverAllServicesAndCharacteristics> Callback OK!`
452
+ );
453
if (err) {
454
this.log(
- `<connectPeripheral:discoverAllServicesAndCharacteristics> error:${err.message}`
455
+ `<connectPeripheral${this.uuid}:discoverAllServicesAndCharacteristics> error:${err.message}`
456
);
457
return;
458
}
0 commit comments