diff --git a/example_project/manage.py b/example_project/manage.py index 83bf642..f309a3c 100755 --- a/example_project/manage.py +++ b/example_project/manage.py @@ -1,4 +1,4 @@ -#!/usr/bin/python2 +#!/usr/bin/python # -*- coding: utf-8 -*- # Copyright (C) 1998-2012 by the Free Software Foundation, Inc. # diff --git a/example_project/settings.py b/example_project/settings.py index 34d035c..1af8640 100644 --- a/example_project/settings.py +++ b/example_project/settings.py @@ -198,23 +198,23 @@ # EMAIL_CONFIRMATION_TEMPLATE = 'postorius/address_confirmation_message.txt' # EMAIL_CONFIRMATION_SUBJECT = 'Confirmation needed' - -LOGGING = { - 'version': 1, - 'disable_existing_loggers': False, - 'handlers': { - 'console': { - 'class': 'logging.StreamHandler' - }, - }, - 'loggers': { - 'django': { - 'handlers': ['console'], - 'level': 'INFO', - }, - 'django_browserid': { - 'handlers': ['console'], - 'level': 'DEBUG', - }, - }, -} +# You can enable logging by uncommenting the following lines +# LOGGING = { +# 'version': 1, +# 'disable_existing_loggers': False, +# 'handlers': { +# 'console': { +# 'class': 'logging.StreamHandler' +# }, +# }, +# 'loggers': { +# 'django': { +# 'handlers': ['console'], +# 'level': 'INFO', +# }, +# 'django_browserid': { +# 'handlers': ['console'], +# 'level': 'DEBUG', +# }, +# }, +# }