breautek commented on issue #608: URL: https://github.com/apache/cordova-cli/issues/608#issuecomment-1448325716
> But now i am seeing its thousands of useless terminal messages just soaking up buffer. What I believe you're seeing is the stdout underlying tool `xcodebuild` (maybe confirm?), which is quite spammy. I'm not too familiar with this repo but what we could probably unhook the stdout pipe to avoid it's stdout from going to the console (since we spawn it, I assume) and only pipe the stdout our `verbose` flag is enabled. But if a compilation error should occur, the feedback information will be lost (and quite often the real error causing the compilation can be pages up in the stdout from when the process exits) and you'll be required to rerun the build with `--verbose`. I don't have access to a mac machine, but `xcodebuild` does have a `-quiet` flag, which supposedly hides all stdout except for warnings and errors. That sounds like the best path forward imo, and we can omit the flag if our `--verbose` flag is enabled. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
