1.1 --- a/eskp.py Wed May 21 08:38:57 2014 +0200
1.2 +++ b/eskp.py Wed May 21 10:00:23 2014 +0200
1.3 @@ -1,4 +1,5 @@
1.4 # -*- coding: utf-8 -*-
1.5 +import logging
1.6
1.7 import os
1.8 import codecs
1.9 @@ -22,6 +23,7 @@
1.10
1.11 # We need the path of this file to find templates to translate
1.12 ESKP_PATH = os.path.dirname(os.path.abspath(__file__))
1.13 +logging.basicConfig(filename=os.path.join(ESKP_PATH, 'eskp-app.log'),level=logging.DEBUG)
1.14
1.15 app = Flask(__name__)
1.16 babel = Babel(app)