summaryrefslogtreecommitdiffstats
path: root/ipalib
diff options
context:
space:
mode:
Diffstat (limited to 'ipalib')
-rw-r--r--ipalib/frontend.py1
-rw-r--r--ipalib/plugable.py9
2 files changed, 7 insertions, 3 deletions
diff --git a/ipalib/frontend.py b/ipalib/frontend.py
index 4ff77c59..c614e547 100644
--- a/ipalib/frontend.py
+++ b/ipalib/frontend.py
@@ -1087,7 +1087,6 @@ class Property(Attribute):
rules=self.rules,
normalize=self.normalize,
)
- super(Property, self).__init__()
def __rules_iter(self):
"""
diff --git a/ipalib/plugable.py b/ipalib/plugable.py
index f3b35d30..019386c3 100644
--- a/ipalib/plugable.py
+++ b/ipalib/plugable.py
@@ -263,8 +263,13 @@ class Plugin(ReadOnly):
self.summary = '<%s>' % self.fullname
else:
self.summary = self.doc.split('\n\n', 1)[0]
- log = logging.getLogger('ipa')
- for name in ('debug', 'info', 'warning', 'error', 'critical'):
+ log = logging.getLogger(self.fullname)
+ for name in ('debug', 'info', 'warning', 'error', 'critical', 'exception'):
+ if hasattr(self, name):
+ raise StandardError(
+ '%s.%s attribute (%r) conflicts with Plugin logger' % (
+ self.name, name, getattr(self, name))
+ )
setattr(self, name, getattr(log, name))
def __get_api(self):