Where is the logfile located for Xcode Scheme Post-Actions? Where is the logfile located for Xcode Scheme Post-Actions? xcode xcode

Where is the logfile located for Xcode Scheme Post-Actions?


The output from those scripts doesn't seem to be logged anywhere by default. Your best bet is to manually redirect the output of the script to a known location. For example, add the following as the first line of your script:

exec > /tmp/my_log_file.txt 2>&1

This will redirect all following output to stdout and stderr to your specified log file.