Skip to content

Commit

Permalink
only log errors, #801
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed Oct 3, 2019
1 parent 9667ecb commit 51b15cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/grunt/phet-io/generatePhetioAPIFiles.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ module.exports = async ( repo, localTestingURL ) => {
receivedTypes = true;
await resolved();
}
else {
console.log( msg.text() );
else if ( msg.type() === 'error' ) {
console.error( msg.text() );
}
} );

Expand Down

0 comments on commit 51b15cb

Please sign in to comment.