From 65ea786358c9ab1561626cc5c04bfa9dc76a30b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Monda?= Date: Sat, 26 May 2018 17:13:10 +0200 Subject: [PATCH] Don't include os.platform into the firmware update log because os.type makes it practically redundant. --- packages/uhk-usb/src/uhk-operations.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/uhk-usb/src/uhk-operations.ts b/packages/uhk-usb/src/uhk-operations.ts index 580005dc..eb78ee69 100644 --- a/packages/uhk-usb/src/uhk-operations.ts +++ b/packages/uhk-usb/src/uhk-operations.ts @@ -30,7 +30,7 @@ export class UhkOperations { } public async updateRightFirmware(firmwarePath = this.getFirmwarePath()) { - this.logService.debug(`[UhkOperations] Operating system: ${os.platform()} ${os.type()} ${os.release()} ${os.arch()}`); + this.logService.debug(`[UhkOperations] Operating system: ${os.type()} ${os.release()} ${os.arch()}`); this.logService.debug('[UhkOperations] Start flashing right firmware'); const prefix = [`--usb 0x1d50,0x${EnumerationNameToProductId.bootloader.toString(16)}`];