On Mon, Aug 5, 2013 at 8:57 AM, Slater Victoroff <[email protected]> wrote: > I'm sorry if this isn't the right place to be posting this, but I've been > having an error with a Flask app for some time now and I'm getting really > frustrated with it and I thought that if anywhere this would be a good place > to ask for help on it. > > I already asked a SO question so I figure it makes more sense to link it > than rewrite its contents here. > http://stackoverflow.com/questions/18059937/flask-app-raises-a-500-error-with-no-exception > > Does anyone have an idea as to where to start on this one? I'm really stuck. >
Try turning PROPAGATE_EXCEPTIONS on: http://flask.pocoo.org/docs/config/#builtin-configuration-values Or setting up logging for errors: http://flask.pocoo.org/docs/errorhandling/ -Steve -- You received this message because you are subscribed to the Google Groups "pocoo-libs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/pocoo-libs. For more options, visit https://groups.google.com/groups/opt_out.
