File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -234,7 +234,7 @@ async function setDefaultPath() {
234
234
try {
235
235
let response = await send ( { command : 'get-ie-path' } ) ;
236
236
if ( response ) {
237
- log ( 'Received: ' , response ) ;
237
+ log ( 'Received: ' , JSON . stringify ( response ) ) ;
238
238
if ( response . path )
239
239
configs . ieapp = response . path ;
240
240
}
@@ -324,7 +324,7 @@ async function launch(aURL) {
324
324
} ;
325
325
try {
326
326
let response = await send ( message ) ;
327
- log ( 'Received: ' , response ) ;
327
+ log ( 'Received: ' , JSON . stringify ( response ) ) ;
328
328
}
329
329
catch ( aError ) {
330
330
log ( 'Error: ' , aError ) ;
@@ -338,6 +338,6 @@ function send(aMessage) {
338
338
aMessage . debug = true ;
339
339
aMessage . logRotationCount = configs . logRotationCount ;
340
340
aMessage . logRotationTime = configs . logRotationTime ;
341
- log ( 'Sending: ' , aMessage ) ;
341
+ log ( 'Sending: ' , JSON . stringify ( aMessage ) ) ;
342
342
return browser . runtime . sendNativeMessage ( 'com.clear_code.ieview_we_host' , aMessage ) ;
343
343
}
You can’t perform that action at this time.
0 commit comments