Skip to content

Commit 0f970ae

Browse files
More debugging
1 parent 53c26c5 commit 0f970ae

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

kernel/src/services/FirmwareService.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ export class FirmwareService {
1414
// Get the firmware options from GitHub (or local files).
1515
// Maybe we'll add an explicit button for updating the firmware options in the future...
1616
// We'll initialize our private firmwareOptions here with the reqFirmwareOptionsGitHub() method.
17+
console.log("In the constructor about to fetch firmware options from GitHub...");
1718
this.reqFirmwareOptionsGitHub().then((res) => {
19+
// log the res
20+
console.log('Firmware options response:', res);
1821
this.firmwareOptions = res;
1922
})
2023

@@ -93,6 +96,7 @@ export class FirmwareService {
9396

9497
// log the firmware options for debugging.
9598
console.log('FINAL Firmware options:', firmwareOptions);
99+
96100
return firmwareOptions;
97101
}
98102

0 commit comments

Comments
 (0)