You can now set the PASTE_CONFIG environment variable to control logging setup

So this should work:

  PASTE_CONFIG=/path/to/paste_foo.ini ./lazycelery.sh

Thanks to Laurent Fournier for sponsoring this commit!
This commit is contained in:
Christopher Allan Webber 2013-02-25 12:15:12 -06:00
parent a49c741f11
commit 86f0ff75e3

View File

@ -35,6 +35,11 @@ def setup_logging_from_paste_ini(loglevel, **kw):
else:
logging_conf_file = 'paste.ini'
# allow users to set up explicitly which paste file to check via the
# PASTE_CONFIG environment variable
logging_conf_file = os.environ.get(
'PASTE_CONFIG', logging_conf_file)
if not os.path.exists(logging_conf_file):
raise IOError('{0} does not exist. Logging can not be set up.'.format(
logging_conf_file))