File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -68,11 +68,20 @@ export class FirmwareService {
68
68
}
69
69
const firmwareUrl = asset . browser_download_url ;
70
70
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
+
71
76
const firmwareOption : FirmwareOption = {
72
77
name : firmwareName ,
73
78
url : firmwareUrl
74
79
} ;
80
+
75
81
firmwareOptions [ firmwareId ] = firmwareOption ;
82
+
83
+ // Log the firmware option for debugging.
84
+ console . log ( 'Firmware option:' , firmwareOptions [ firmwareId ] ) ;
76
85
} ) ;
77
86
}
78
87
@@ -82,6 +91,8 @@ export class FirmwareService {
82
91
url : ''
83
92
} ;
84
93
94
+ // log the firmware options for debugging.
95
+ console . log ( 'FINAL Firmware options:' , firmwareOptions ) ;
85
96
return firmwareOptions ;
86
97
}
87
98
You can’t perform that action at this time.
0 commit comments