From 84a5e17e517107c71171cd82344de1b11262121b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kiss=20R=C3=B3bert?= Date: Sun, 15 Dec 2024 00:37:30 +0100 Subject: [PATCH] chore: remove console logs --- packages/usb/factory-update-uhk60.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/packages/usb/factory-update-uhk60.ts b/packages/usb/factory-update-uhk60.ts index 5714e770f8f..1b9e9a7d990 100755 --- a/packages/usb/factory-update-uhk60.ts +++ b/packages/usb/factory-update-uhk60.ts @@ -49,15 +49,12 @@ const devicesOptions = getDevicesOptions(DEVICES); }); const rightFirmwarePath = getDeviceFirmwarePath(uhkDeviceProduct, packageJson); - console.log('Right firmware path', rightFirmwarePath); if (!fs.existsSync(rightFirmwarePath)) { console.error('Right firmware path not found!'); process.exit(1); } - const leftFirmwarePath = getModuleFirmwarePath(LEFT_HALF_MODULE, packageJson); - console.log('Left firmware path', leftFirmwarePath); if (!fs.existsSync(leftFirmwarePath)) { console.error('Left firmware path not found!'); @@ -65,7 +62,6 @@ const devicesOptions = getDevicesOptions(DEVICES); } const userConfigPath = getDeviceUserConfigPath(uhkDeviceProduct, packageJson); - console.log('User config path', userConfigPath); if (!fs.existsSync(userConfigPath)) { console.error('User configuration path not found!'); process.exit(1);