Skip to content

Commit 53c26c5

Browse files
more debugging...
1 parent 5708e83 commit 53c26c5

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

kernel/src/services/FirmwareService.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,20 @@ export class FirmwareService {
6868
}
6969
const firmwareUrl = asset.browser_download_url;
7070

71+
// Log the firmwareId, firmwareName, and firmwareUrl for debugging.
72+
console.log('Firmware ID:', firmwareId);
73+
console.log('Firmware Name:', firmwareName);
74+
console.log('Firmware URL:', firmwareUrl);
75+
7176
const firmwareOption: FirmwareOption = {
7277
name: firmwareName,
7378
url: firmwareUrl
7479
};
80+
7581
firmwareOptions[firmwareId] = firmwareOption;
82+
83+
// Log the firmware option for debugging.
84+
console.log('Firmware option:', firmwareOptions[firmwareId]);
7685
});
7786
}
7887

@@ -82,6 +91,8 @@ export class FirmwareService {
8291
url: ''
8392
};
8493

94+
// log the firmware options for debugging.
95+
console.log('FINAL Firmware options:', firmwareOptions);
8596
return firmwareOptions;
8697
}
8798

0 commit comments

Comments
 (0)