I wonder if there is a way to generate a traceback list as if a fatal error has occurred, but to keep running.
I'd like to be able to tell where in a long chain of routines an error has occurred and be able to track the calling chain to the source of the internal problem.
Obviously, I could cause a fault to occur, but many times an issue can occur that doesn't rise to a level of forcing the code to crash. It would be helpful in the debugging process to have the execution continue after noting (and logging) the issue.
Bill