From f43f6c50c6d6c0f456ef30a9887dd6649ac9b879 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Tue, 2 Feb 2010 16:58:17 -0500 Subject: Only change the log level if it isn't already set This primarily affects the installer. We want to log to the install/ uninstall file in DEBUG. This was getting reset to INFO causing lots of details to not show in the logs. --- ipalib/plugable.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'ipalib/plugable.py') diff --git a/ipalib/plugable.py b/ipalib/plugable.py index b6ba73255..6b2c6f7d0 100644 --- a/ipalib/plugable.py +++ b/ipalib/plugable.py @@ -365,10 +365,11 @@ class API(DictProxy): self.env._finalize_core(**dict(DEFAULT_CONFIG)) log = logging.getLogger() object.__setattr__(self, 'log', log) - if self.env.debug: - log.setLevel(logging.DEBUG) - else: - log.setLevel(logging.INFO) + if log.level == logging.NOTSET: + if self.env.debug: + log.setLevel(logging.DEBUG) + else: + log.setLevel(logging.INFO) # Add stderr handler: stderr = logging.StreamHandler() -- cgit