Mercurial > public > sg101
comparison gpp/settings.py @ 316:767cedc7d12a
Fixing #144; integrate with new Django logging support. Also added unit tests for Donations app.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 30 Jan 2011 20:02:32 +0000 |
parents | 88b2b9cb8c1f |
children | 2934a867c2ef |
comparison
equal
deleted
inserted
replaced
315:36373d995611 | 316:767cedc7d12a |
---|---|
1 # Django settings for gpp project. | 1 # Django settings for gpp project. |
2 | 2 |
3 import os | 3 import os |
4 import platform | 4 import platform |
5 from decimal import Decimal | 5 from decimal import Decimal |
6 import logging | |
7 | 6 |
8 import local_settings | 7 import local_settings |
9 | 8 |
10 project_path = os.path.abspath(os.path.split(__file__)[0]) | 9 project_path = os.path.abspath(os.path.split(__file__)[0]) |
11 | 10 |
249 | 248 |
250 ####################################################################### | 249 ####################################################################### |
251 # Configure Logging | 250 # Configure Logging |
252 ####################################################################### | 251 ####################################################################### |
253 | 252 |
254 logging.basicConfig( | 253 LOGGING = local_settings.LOGGING |
255 filename=os.path.join(project_path, 'logs', 'gpp.log'), | |
256 filemode='a', | |
257 format='%(asctime)s %(levelname)s %(message)s', | |
258 level=local_settings.LOG_LEVEL) | |
259 | 254 |
260 ####################################################################### | 255 ####################################################################### |
261 # Django Debug Toolbar | 256 # Django Debug Toolbar |
262 ####################################################################### | 257 ####################################################################### |
263 | 258 |