My debugging toolbox for GAE:
- standard Python logging as a substitute for
printstatements - Werkzeug debugger if I do not want to go to the console log on each error (not everything works, most notably interactive interpreter session)
- interactive console at http://localhost:8080/%5Fah/admin/interactive (not as good as Django's
python manage.py shellbut still...)
Symbolic debuggers are not so valued as elsewhere, possibly because Python's superior introspection and reflection mechanisms.
