This answer addresses how to show the console log in Xcode, but output printed with the print
function in Swift that appear in the development build of the app do not appear in the release build.
To be clear, the app was downloaded from the App Store and then Xcode was opened with the console log showing as described by the SO answer.
This answer suggests the print
function continues to send output to the console even for release builds.
However, lines that printed to the console for the development build no longer appear for the App Store version.
How do you view the same console output that appears for the development build?