Suppress xcodebuild output or do less verbose

I create my application as a team using the xcodebuild command line tools. I am looking for a way to suppress or make the conclusion less verbose, but still show errors or failures if they occur. The build log is getting very large and it is difficult for the browser to download it.

Are there any additional options that I can pass in or a way to pass it to a log file?

+6
source share
2 answers

It's impossible. However, you can make the log more readable with xctool or xcpretty - not sure if the size is also resized. This is probably true.

+4
source

If you use xcpretty https://github.com/supermarin/xcpretty , you will have something readable and less verbose, the size will be smaller. This is a great tool, especially if you have a unit test. You can take a look at github where they show examples.

+2
source

Source: https://habr.com/ru/post/975907/


All Articles