I am starting to experiment more with writing plugins using Python.
My experience so far is that I do not know how to become aware of at least one type of runtime difficulty. Specifically, I do not know that the plugin has aborted execution due to an exception being raised. Tracking down relevant lines in the source code can become a chore with no hints!
Does any one have any ideas (other than wrap every function call body in try/except) about how to be alerted about runtime exceptions? Any chance that FScript could make a stacktrace available (or may be it does already and I don't know where to look)?
For comparison, when this type of thing occurs for a JavaScript plugin, I am alerted by my local installation of MS Script Debugger...I went looking for something similar for Python, but so far I have not been successful in locating anything.
I hope someone has some good ideas regarding this situation
Edit: catch -> except ... oops 