Reputation: 1437
I have a custom Run Script phase in my Xcode project that outputs some information:
When I build the app via Xcode, I see the output of the script (Planning build
, Building for debugging
etc.):
Is there any way I can make that output appear when run through fastlane as well?
Thanks
P.S. This post has gone through a couple of major edits while I realized the root cause better. Apologies for that.
Upvotes: 6
Views: 824
Reputation: 1624
If you use gym, you can simply disable the xcpretty to show all the log:
xcodebuild_formatter: '',
Upvotes: 0
Reputation: 91
Add to your fastlan xcodebuild this parameter:
raw_buildlog: true
Upvotes: 0
Reputation: 391
although not perfect, if you type "warning: Hello" you will see it in the log as a warning
echo "warning: Hello"
Upvotes: 0
Reputation: 1498
I don't know if it will help, but have you tried adding -verbose
to the xcodebuild command? You can see the explanation in man xcodebuild
.
Upvotes: 0