From 5015beaaa6fe21600398b7f9d66955a441f87f8e Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Fri, 13 Apr 2007 19:37:12 +0000 Subject: Clean up activity join/leave debug messages --- (limited to 'services') diff --git a/services/presence/presenceservice.py b/services/presence/presenceservice.py index 9c7b7ed..b848c82 100644 --- a/services/presence/presenceservice.py +++ b/services/presence/presenceservice.py @@ -201,7 +201,7 @@ class PresenceService(dbus.service.Object): activities_joined = new_activities - old_activities for act in activities_joined: - logging.debug("Buddy", contact_handle, "joined", act) + logging.debug("Handle %s joined activity %s" % (contact_handle, act)) activity = self._activities.get(act) if not activity: # new activity, can fail @@ -213,7 +213,7 @@ class PresenceService(dbus.service.Object): activities_left = old_activities - new_activities for act in activities_left: - logging.debug("Buddy", contact_handle, "left", act) + logging.debug("Handle %s left activity %s" % (contact_handle, act)) activity = self._activities.get(act) if not activity: continue -- cgit v0.9.1