Forums

Debugging Code?

Any suggestions for debugging my Python/Flask code? I want to be able to examine the contents of lists and variables on PA without loading a local environment.

If this is lists/variables when your flask app is responding to a http request, the easiest would be to log/print the list/variable somewhere. (eg: stdout will go to your log files -> server.log, and printing to stderr will go to error logs)