]> Frank Brehm's Git Trees - pixelpark/admin-tools.git/commitdiff
Bugfixing
authorFrank Brehm <frank.brehm@pixelpark.com>
Thu, 18 Apr 2019 11:19:09 +0000 (13:19 +0200)
committerFrank Brehm <frank.brehm@pixelpark.com>
Thu, 18 Apr 2019 11:19:09 +0000 (13:19 +0200)
pp_lib/app.py
pp_lib/dnsui_users.py
pp_lib/ldap_app.py

index 886a27d92b9d65a556b316f37938d1d3ca93bbb2..755c8dccc3029857943ff495271ad02d770ec784 100644 (file)
@@ -468,6 +468,8 @@ class PpApplication(PpBaseObject):
 
         """
 
+        LOG.debug("Executing {} ...".format(self.__class__.__name__))
+
         if not self.initialized:
             self.handle_error(
                 "The application is not completely initialized.", '', True)
index 767d7888f03baa030f6b43dbed0437fb9ff989ed..75103e104fa6b7d279716827b3330066ea0cc44f 100644 (file)
@@ -195,6 +195,7 @@ class DnsuiUsersApp(PpLdapApplication):
     # -------------------------------------------------------------------------
     def pre_run(self):
 
+        super(DnsuiUsersApp, self).pre_run()
         self.connect_db()
 
     # -------------------------------------------------------------------------
index 460a297af4ac3356ded2fcb774e26519ba022696..5b84e3abab5b3cf9c55b9ef7bdf16677189dd3ec 100644 (file)
@@ -244,11 +244,11 @@ class PpLdapApplication(PpConfigApplication):
         """
 
         if self.verbose > 1:
-            LOG.debug("executing pre_run() ...")
+            LOG.debug("Executing pre_run() ...")
 
         super(PpLdapApplication, self).pre_run()
 
-        LOG.debug("Binding to the LDAP servers ...")
+        LOG.info("Binding local address for LDAP requests ...")
         try:
             self.ldap_connection.bind()
         except LDAPPasswordIsMandatoryError as e: