mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-03-25 06:21:46 +08:00
9 lines
260 B
Python
9 lines
260 B
Python
# 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!
|