Debugging OS or OS X–Based Installers
InstallAnywhere 2021
InstallAnywhere-generated installers use the standard output layers on OS or OS X target systems to display output. To gather debugging output from a OS or OS X–based installer, launch Console.app (found in /Applications/Utilities). To retain this information, cut and paste information from the console window to a file.
If you do not see debug output from an installer, check the Info.plist file inside the installer. To do this, press Control while clicking the installer (or right-click the installer) and then click Show Package Contents. Inside the Contents folder, you will see an XML file named Info.plist. You’ll need to change the contents of the file. Initially, it contains the following:
<key>lax.stderr.redirect</key>
<string></string>
<key>lax.stdout.redirect</key>
<string></string>
Change the file to this:
<key>lax.stderr.redirect</key>
<string>console</string>
<key>lax.stdout.redirect</key>
<string>console</string>
When you relaunch the installer, the installer output should be now listed in Console.app.
See Also
Troubleshooting Tips for Code-Signing and Authentication Support for OS or OS X–Based Target Systems