diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2013-05-29 16:40:58 +0200 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2013-05-29 16:40:58 +0200 |
commit | 1a3dff6fdf373a7ffa4b5b0166b3789cc05129b5 (patch) | |
tree | 625eee015d23b8378379b0e7d2b51b477c4318f5 | |
parent | a0a88ff30ee40502665f0b59121ce72f82ead7e1 (diff) | |
download | pykolab-1a3dff6fdf373a7ffa4b5b0166b3789cc05129b5.tar.gz |
In debugging, make it clear we have finished handling the synchronization callback
-rw-r--r-- | pykolab/auth/ldap/__init__.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/pykolab/auth/ldap/__init__.py b/pykolab/auth/ldap/__init__.py index a6a1044..a86abbd 100644 --- a/pykolab/auth/ldap/__init__.py +++ b/pykolab/auth/ldap/__init__.py @@ -2091,6 +2091,14 @@ class LDAP(pykolab.base.Base): # # server = self.imap.user_mailbox_server(folder) + log.debug( + _("Done with _synchronize_callback() for entry %r") % ( + entry['id'] + ), + level=9 + ) + + def _unbind(self): """ Discard the current set of bind credentials. |