summaryrefslogtreecommitdiffstats
path: root/roles/statscache/frontend/files/statscache.wsgi
blob: 16bff2b9ccd8f0a5517fc856480c873689c7ff19 (plain)
1
2
3
4
5
6
7
8
# http://stackoverflow.com/questions/8007176/500-error-without-anything-in-the-apache-logs
import logging
import sys
logging.basicConfig(stream=sys.stderr)

import statscache.app
application = statscache.app.app
#application.debug = True  # Nope.  Be careful!