Fix logging problem when running in wsgi mode

This commit is contained in:
Philippe M. Chiasson 2010-12-14 15:15:49 -05:00
Родитель 00ee8b792f
Коммит 09961a1cb2
1 изменённых файлов: 8 добавлений и 1 удалений

Просмотреть файл

@ -1,6 +1,13 @@
# Find ourselves
import os.path
import os, sys
basedir = os.path.abspath(os.path.dirname(__file__))
__here__ = os.path.dirname(__file__)
__parent__ = os.path.dirname(__here__)
sys.path.append(__parent__)
from paste.script.util.logging_config import fileConfig
fileConfig('%s/development.ini' % __parent__)
from paste.deploy import loadapp