I have an app on AppStore that logs sensitive data in the Xcode console using iOS default print()
method.
My question is if those logs can be intercepted by someone else in one way or another using different softwares? Or should I release a new version of the app to the AppStore that disables console logs on Release environment.
It is recommended to disable the logs for Release version using #if DEBUG
? Or should I not take care of this.