Skip to content

Commit

Permalink
Fix logging in publish task
Browse files Browse the repository at this point in the history
  • Loading branch information
ihadeed committed Dec 29, 2017
1 parent 1330840 commit 85d685b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions scripts/tasks/publish.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,12 @@ async function publish(ignoreErrors: boolean = false) {

try {
await Queue(worker, PACKAGES, cpus().length);
Logger.log('Done publishing!');
Logger.info('Done publishing!');
} catch (e) {
Logger.error('Error publishing!');
Logger.error(e);
} finally {
Logger.profile('Publishing');
}
Logger.profile('Publishing', { level: 'verbose' });
}

prepare();
Expand Down

0 comments on commit 85d685b

Please sign in to comment.