10

I am building my app in teamcity with xcodebuild command line tools. I am looking for a way to suppress or make the output less verbose but still show errors or failures if they happen. The build log becomes very large and the browser has a hard time loading it.

Are there optional parameters I can pass in or a way to stream it to a log file?

Josh Lesch
  • 395
  • 1
  • 5
  • 23

2 Answers2

4

It's not possible. However You can make the log more readable with xctool or xcpretty - not sure the size is also changed. Probably, it is.

Opal
  • 81,889
  • 28
  • 189
  • 210
2

If you use xcpretty https://github.com/supermarin/xcpretty you will have something readable and less verbose, the size will be smaller. It's a great tool, especially if you have unit test. You can take a look to the github they show exemples.

Boris Charpentier
  • 3,515
  • 25
  • 28