Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/sugar/presence/presenceservice.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/sugar/presence/presenceservice.py b/src/sugar/presence/presenceservice.py
index 02f727c..1eb5fa6 100644
--- a/src/sugar/presence/presenceservice.py
+++ b/src/sugar/presence/presenceservice.py
@@ -267,10 +267,13 @@ class PresenceService(gobject.GObject):
connection_manager = get_connection_manager()
connections_per_account = connection_manager.get_connections_per_account()
for account_path, connection in connections_per_account.items():
+ logging.debug("Calling GetActivity on %s", account_path)
try:
room_handle = connection.GetActivity(activity_id)
except dbus.exceptions.DBusException, e:
- if e.get_dbus_name() != 'org.freedesktop.Telepathy.Error.NotAvailable':
+ if e.get_dbus_name() == 'org.freedesktop.Telepathy.Error.NotAvailable':
+ logging.debug("There's no shared activity with the id %s", activity_id)
+ else:
raise
else:
activity = Activity(account_path, connection,