From 8b47d93ad2e9bfa086eb44b32c7d010efbce9265 Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Mon, 16 Apr 2007 22:37:56 -0400 Subject: [PATCH] Fix debug output; print handle --- services/presence/server_plugin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/presence/server_plugin.py b/services/presence/server_plugin.py index 5180692f..0136f142 100644 --- a/services/presence/server_plugin.py +++ b/services/presence/server_plugin.py @@ -517,12 +517,12 @@ class ServerPlugin(gobject.GObject): return if not self._online_contacts.has_key(handle): - logging.debug("Handle %s not valid yet...") + logging.debug("Handle %s unknown." % handle) return jid = self._online_contacts[handle] if not jid: - logging.debug("Handle %s not valid yet...") + logging.debug("Handle %s not valid yet..." % handle) return icon = self._icon_cache.get_icon(jid, new_avatar_token)