Skip to content

Commit

Permalink
Merge 652b983 into 31d2e46
Browse files Browse the repository at this point in the history
  • Loading branch information
aniketkudale committed Dec 25, 2016
2 parents 31d2e46 + 652b983 commit 40b3dad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/cmd/run.js
Expand Up @@ -51,6 +51,7 @@ export function defaultWatcherCreator(
log.debug(`Reloading add-on ID ${addonId}`);
return client.reloadAddon(addonId)
.catch((error) => {
log.error('\n');
log.error(error.stack);
throw error;
});
Expand Down
5 changes: 3 additions & 2 deletions src/firefox/remote.js
Expand Up @@ -171,8 +171,9 @@ export class RemoteFirefox {
const addon = await this.getInstalledAddon(addonId);
await this.checkForAddonReloading(addon);
await this.addonRequest(addon, 'reload');
log.info(
`${(new Date()).toTimeString()}: Reloaded extension: ${addon.id}`);
process.stdout.write(
`\rLast extension reload: ${(new Date()).toTimeString()}`);
log.debug('\n');
}
}

Expand Down

0 comments on commit 40b3dad

Please sign in to comment.