From: Diane Trout Date: Wed, 27 Jun 2012 23:40:22 +0000 (-0700) Subject: If I'm going to make a call to logger, I really should create it first X-Git-Tag: v0.5.5~1 X-Git-Url: http://woldlab.caltech.edu/gitweb/?p=htsworkflow.git;a=commitdiff_plain;h=47e9308e65a73d05c3a17414a7a74abf62cddf05 If I'm going to make a call to logger, I really should create it first --- diff --git a/htsworkflow/settings.py b/htsworkflow/settings.py index 7af5ac4..1a3ede7 100644 --- a/htsworkflow/settings.py +++ b/htsworkflow/settings.py @@ -28,6 +28,7 @@ The options understood by this module are (with their defaults): """ import ConfigParser +import logging import os import shlex import htsworkflow @@ -37,6 +38,7 @@ from django.conf import global_settings from htsworkflow.util.api import make_django_secret_key HTSWORKFLOW_ROOT = os.path.abspath(os.path.split(htsworkflow.__file__)[0]) +LOGGER = logging.getLogger(__name__) # make epydoc happy __docformat__ = "restructuredtext en"