diff -r 024119c683df -r 3b4e7d56960a eskp.py --- a/eskp.py Wed May 21 08:38:57 2014 +0200 +++ b/eskp.py Wed May 21 10:00:23 2014 +0200 @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +import logging import os import codecs @@ -22,6 +23,7 @@ # We need the path of this file to find templates to translate ESKP_PATH = os.path.dirname(os.path.abspath(__file__)) +logging.basicConfig(filename=os.path.join(ESKP_PATH, 'eskp-app.log'),level=logging.DEBUG) app = Flask(__name__) babel = Babel(app)