File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,10 @@ export class FirmwareService {
14
14
// Get the firmware options from GitHub (or local files).
15
15
// Maybe we'll add an explicit button for updating the firmware options in the future...
16
16
// We'll initialize our private firmwareOptions here with the reqFirmwareOptionsGitHub() method.
17
+ console . log ( "In the constructor about to fetch firmware options from GitHub..." ) ;
17
18
this . reqFirmwareOptionsGitHub ( ) . then ( ( res ) => {
19
+ // log the res
20
+ console . log ( 'Firmware options response:' , res ) ;
18
21
this . firmwareOptions = res ;
19
22
} )
20
23
@@ -93,6 +96,7 @@ export class FirmwareService {
93
96
94
97
// log the firmware options for debugging.
95
98
console . log ( 'FINAL Firmware options:' , firmwareOptions ) ;
99
+
96
100
return firmwareOptions ;
97
101
}
98
102
You can’t perform that action at this time.
0 commit comments