Skip to content

Commit

Permalink
text output changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Bell committed Oct 23, 2015
1 parent 6cb5109 commit f864ab1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion parallel-uglify
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function launch(err, files) {
console.log( 'master: Sending job ' + job + ' to worker ' + worker_id );
worker_process.send({ cmd: 'go', name: files[job] });
} else {
console.log( 'master: we are all done. Kill ' + worker_id );
console.log( 'master: We are all done. Disconnecting ' + worker_id + '.');
worker_process.disconnect();
}
}
Expand Down
2 changes: 1 addition & 1 deletion worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ process.on( 'message', function( msg ) {
});

process.on( 'exit', function( err ) {
console.log( 'worker' + id + ': I am Exiting' );
console.log( 'worker' + id + ': I am exiting' );
});

0 comments on commit f864ab1

Please sign in to comment.