from .config import LDAPMigrationConfiguration
-__version__ = '0.9.4'
+__version__ = '0.9.5'
LOG = logging.getLogger(__name__)
CFG_BASENAME = 'ldap-migration.ini'
if changes:
if self.verbose:
LOG.info("Updating target entry {!r} ...".format(tgt_dn))
- if self.verbose > 1:
+ if self.verbose > 2:
msg = "Source attributes:\n{}".format(pp(src_entry['attributes']))
LOG.debug(msg)
msg = "Current target attributes:\n{}".format(pp(tgt_entry['attributes']))
LOG.debug(msg)
+ if self.verbose > 1:
msg = "Changes on target entry {tdn!r}:\n{ch}".format(
tdn=tgt_dn, ch=pp(changes))
LOG.debug(msg)