I'm having a heck of a time debugging my standalone app. I built it using omz's template. It fails in a way that it doesn't fail as a script. But the biggest problem is I can't figure out how to debug. The actual code running is not in source form. I'm getting an exception and can't figure out what it means. I was trying to narrow down where in my python code it was happening but I can't figure out how to get debug info out. Standard out goes to a screen that is hidden when the app runs and never gets revealed once the exception happens. Breakpoints are useless because they are in ObjectiveC where I don't have source code.
Is there any way way to write to the app debug log from python? That would show on the Mac and is how I usually debug iOS apps. (And breakpoints of course.) It is usually just stdout from ObjectiveC.
Any suggestions? It seems like very few people use this functionality because I am not getting answers to my questions. I have made no progress for two days which is discouraging. Is this (stand alone apps) a supported feature or should I just give up? I don't think I'm going to be able to solve this on my own.
-steve