X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/861a08cdc38728e9f988a0a321e62693e26e947f..0f2caec0a29deb23c912042b2f81473a2b9722e2:/project/settings.py diff --git a/project/settings.py b/project/settings.py index 7d2ed64e..3a1f3ad9 100644 --- a/project/settings.py +++ b/project/settings.py @@ -8,6 +8,7 @@ TEMPLATE_DEBUG = DEBUG ADMINS = ( (u'Marek Stępniowski', 'marek@stepniowski.com'), + (u'Łukasz Rekucki', 'lrekucki@gmail.com'), ) MANAGERS = ADMINS @@ -30,8 +31,8 @@ TIME_ZONE = 'Europe/Warsaw Poland' # http://www.i18nguy.com/unicode/language-identifiers.html LANGUAGE_CODE = 'pl' -import locale -locale.setlocale(locale.LC_ALL, '') +#import locale +#locale.setlocale(locale.LC_ALL, '') SITE_ID = 1 @@ -87,7 +88,7 @@ MIDDLEWARE_CLASSES = ( ROOT_URLCONF = 'urls' TEMPLATE_DIRS = ( - PROJECT_ROOT + '/templates', + PROJECT_ROOT + '/templates', ) # CSS and JS files to compress @@ -115,7 +116,8 @@ INSTALLED_APPS = ( 'django.contrib.sites', 'django.contrib.admin', 'django.contrib.admindocs', - + + 'piston', 'explorer', 'toolbar', 'api', @@ -133,6 +135,19 @@ EDITOR_DEFAULT_SETTINGS = { ], } +# Python logging settings +import logging + +log = logging.getLogger('platforma') +log.setLevel(logging.DEBUG) +ch = logging.StreamHandler() +ch.setLevel(logging.DEBUG) +formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s') +ch.setFormatter(formatter) +log.addHandler(ch) + + +# Import localsettings file, which may override settings defined here try: from localsettings import * except ImportError: