openlearningtools / opencompetencies

A tool for organizing educational competencies.
MIT License
16 stars 3 forks source link

Test whether print statements always generate server errors #123

Closed ehmatthes closed 8 years ago

ehmatthes commented 8 years ago

This is probably a general django/ nginx/ gunicorn/ ubuntu issue, but I don't know the clear answer to this. Put a print statement in a view, see if that page causes a server error. If so, prune any remaining print statements.

(I use print statements prolifically in development; they occasionally stay in production code. I'll install django-debug-toolbar to minimize this, and clean up my overall development practice.)

ehmatthes commented 8 years ago

A little bit of reading clarifies that this is a bad idea. I'll remove any remaining print statements.

ehmatthes commented 8 years ago

Removed print statements, probably fixes #114.