From bda9dddd4fe7689c7aec056351d2f35443f90b28 Mon Sep 17 00:00:00 2001 From: chopster44 Date: Mon, 1 Dec 2025 20:59:41 +0000 Subject: [PATCH] more logging --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 1b06ba3..5bdce33 100644 --- a/src/index.ts +++ b/src/index.ts @@ -213,7 +213,7 @@ export default class Updater { return new Promise((resolve, reject) => { this.bleObject.writeWithoutResponse(this.bleDeviceId, this._updaterServiceUUID, this._updateFileCharacteristicUUID, packet.buffer, () => { - console.log(`Sent: ${packet}`); + console.log(`Sent: ${packet}, progress: ${this._fileProgress}`); resolve(true); }, (error) => {