Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2007-05-03 02:22:02 (GMT)
committer Dan Williams <dcbw@redhat.com>2007-05-03 02:22:02 (GMT)
commit587bc3be19059e9d894f83c59fc0b998f9ac92a5 (patch)
tree22a64d6efcff4442e0a8d2c5a0f25b13e4f5e676 /shell
parent65998a10c668078c1ac26d2ba0c94975a26c172c (diff)
More verbose debug messages when starting activities
Diffstat (limited to 'shell')
-rw-r--r--shell/view/Shell.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/shell/view/Shell.py b/shell/view/Shell.py
index b57df48..084a708 100644
--- a/shell/view/Shell.py
+++ b/shell/view/Shell.py
@@ -136,7 +136,7 @@ class Shell(gobject.GObject):
logging.debug("This activity is still launching.")
return
- logging.debug('Shell.start_activity')
+ logging.debug('Trying to start activity of type %s' % activity_type)
self._activities_starting.add(activity_type)
try:
@@ -147,7 +147,8 @@ class Shell(gobject.GObject):
activity_type)
handler.connect('error', self._start_error_cb, home_model)
- except:
+ except Exception, err:
+ logging.debug("Couldn't start activity of type %s: %s" % (activity_type, err))
self._activities_starting.remove(activity_type)
# Zoom to Home for launch feedback