Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2007-05-03 02:31:26 (GMT)
committer Dan Williams <dcbw@redhat.com>2007-05-03 02:31:26 (GMT)
commite392680f3e8c72c7f705e5674930c0642bb43e75 (patch)
treed3dba78309b01f632efe1f0b0fc05d0b89a9f1e6
parente4be6fc1bacb4ada663a2fb57a6557c6475c9435 (diff)
Log activity launch failures with error info; fix typo
-rw-r--r--shell/view/Shell.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/view/Shell.py b/shell/view/Shell.py
index 084a708..f2827e0 100644
--- a/shell/view/Shell.py
+++ b/shell/view/Shell.py
@@ -102,7 +102,8 @@ class Shell(gobject.GObject):
return self._popup_context
def _join_error_cb(self, handler, err, home_model):
- home_mode.notify_activity_launch_failed(handler.get_activity_id())
+ logging.debug("Failed to join activity %s: %s" % (handler.get_activity_id(), err))
+ home_model.notify_activity_launch_failed(handler.get_activity_id())
def join_activity(self, bundle_id, activity_id):
activity = self.get_activity(activity_id)