Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have created a simple python flask application, which is working fine at http://cm-test.aws.af.cm/

But, when you access it on the route http://cm-test.aws.af.cm/redis it fails with "500 Internal Server Error"

The problem is, I can't find a way to see some log or error message about the problem... Is this syntax error, or exception, or something else?

How can I get more information about this error?

I can't find nothing on the dashboard and there is nothing in the logs ("af logs cm-test")

share|improve this question

2 Answers

On the command line, you can use af logs <appname> to view your application's server output/log.

share|improve this answer

even though you should not do this in production, to troubleshoot, you can turn debugging on.

app.debug = True

This will show you the error message if on flask side instead of the 500

share|improve this answer
1  
Tried, does not work, and also - it is flask specific. There should be a general way to report errors. – Hristo Hristov Dec 12 '12 at 21:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.