File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ export function defaultWatcherCreator(
51
51
log . debug ( `Reloading add-on ID ${ addonId } ` ) ;
52
52
return client . reloadAddon ( addonId )
53
53
. catch ( ( error ) => {
54
+ log . error ( '\n' ) ;
54
55
log . error ( error . stack ) ;
55
56
throw error ;
56
57
} ) ;
Original file line number Diff line number Diff line change @@ -171,8 +171,9 @@ export class RemoteFirefox {
171
171
const addon = await this . getInstalledAddon ( addonId ) ;
172
172
await this . checkForAddonReloading ( addon ) ;
173
173
await this . addonRequest ( addon , 'reload' ) ;
174
- log . info (
175
- `${ ( new Date ( ) ) . toTimeString ( ) } : Reloaded extension: ${ addon . id } ` ) ;
174
+ process . stdout . write (
175
+ `\rLast extension reload: ${ ( new Date ( ) ) . toTimeString ( ) } ` ) ;
176
+ log . debug ( '\n' ) ;
176
177
}
177
178
}
178
179
You can’t perform that action at this time.
0 commit comments