Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/services/presence/presenceservice.py
diff options
context:
space:
mode:
Diffstat (limited to 'services/presence/presenceservice.py')
-rw-r--r--services/presence/presenceservice.py4
1 files changed, 2 insertions, 2 deletions
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