Fix debug output; print handle

This commit is contained in:
Dan Williams 2007-04-16 22:37:56 -04:00
parent 2aa6086589
commit 8b47d93ad2

View File

@ -517,12 +517,12 @@ class ServerPlugin(gobject.GObject):
return return
if not self._online_contacts.has_key(handle): if not self._online_contacts.has_key(handle):
logging.debug("Handle %s not valid yet...") logging.debug("Handle %s unknown." % handle)
return return
jid = self._online_contacts[handle] jid = self._online_contacts[handle]
if not jid: if not jid:
logging.debug("Handle %s not valid yet...") logging.debug("Handle %s not valid yet..." % handle)
return return
icon = self._icon_cache.get_icon(jid, new_avatar_token) icon = self._icon_cache.get_icon(jid, new_avatar_token)