From 6f9cbeb72ec47bf7f5d2698df5855f2f6c329c66 Mon Sep 17 00:00:00 2001 From: Michael Kauzmann Date: Tue, 30 Apr 2024 12:55:58 -0600 Subject: [PATCH] compare all stable sims for CTQ, https://github.com/phetsims/chipper/issues/1350 Signed-off-by: Michael Kauzmann --- js/phet-io/phetioCompareAPISets.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/js/phet-io/phetioCompareAPISets.js b/js/phet-io/phetioCompareAPISets.js index c27ec7a66..987a04bcb 100644 --- a/js/phet-io/phetioCompareAPISets.js +++ b/js/phet-io/phetioCompareAPISets.js @@ -45,16 +45,16 @@ module.exports = async ( repos, proposedAPIs, options ) => { if ( comparisonData.breakingProblems.length ) { ok = false; - console.log( `${repo} BREAKING PROBLEMS` ); - console.log( comparisonData.breakingProblems.join( '\n' ) ); - console.log( '\n' ); + console.error( `${repo} BREAKING PROBLEMS` ); + console.error( comparisonData.breakingProblems.join( '\n' ) ); + console.error( '\n' ); } if ( comparisonData.designedProblems.length ) { ok = false; - console.log( `${repo} DESIGN PROBLEMS` ); - console.log( comparisonData.designedProblems.join( '\n' ) ); - console.log( '\n' ); + console.error( `${repo} DESIGN PROBLEMS` ); + console.error( comparisonData.designedProblems.join( '\n' ) ); + console.error( '\n' ); } if ( options.delta ) {