diff --git a/package.json b/package.json index ff950dc..fd0e705 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "node-osmo", - "version": "1.0.1", + "version": "1.0.2", "description": "Typescript library for controlling DJI Osmo Action 4 and Pocket 3 using BLE (Bluetooth Low Energy)", "type": "module", "source": "./src/index.ts", diff --git a/src/device.ts b/src/device.ts index 0328f43..6ead679 100644 --- a/src/device.ts +++ b/src/device.ts @@ -265,10 +265,6 @@ export class DjiDevice { console.error('dji-device: Characteristic read error', error); return; } - console.info( - `uffs ${data.toString('hex')} from characteristic ${characteristic.uuid}`, - data, - ); this.onCharacteristicValueChanged(characteristic, data); }); await characteristic.notifyAsync(true);