From 1f71152002a11d67a42a267c3238e2fcfe09ecac Mon Sep 17 00:00:00 2001 From: Thomas Lekanger Date: Sat, 7 Sep 2024 15:39:12 +0200 Subject: [PATCH] chore: remove debug statement --- package.json | 2 +- src/device.ts | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) 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);