Fix more debug printout; print type not method itself

This commit is contained in:
Dan Williams 2007-05-02 23:16:14 -04:00
parent 886dbf288b
commit b3a403c8f0

View File

@ -71,7 +71,7 @@ class HomeActivity(gobject.GObject):
"""Callback for launch operation timeouts """Callback for launch operation timeouts
""" """
logging.debug("Activity %s (%s) launch timed out" % logging.debug("Activity %s (%s) launch timed out" %
(self._activity_id, self.get_type)) (self._activity_id, self.get_type()))
self._launch_timeout_id = 0 self._launch_timeout_id = 0
self.emit('launch-timeout') self.emit('launch-timeout')
return False return False
@ -79,7 +79,7 @@ class HomeActivity(gobject.GObject):
def set_window(self, window): def set_window(self, window):
"""An activity is 'launched' once we get its window.""" """An activity is 'launched' once we get its window."""
logging.debug("Activity %s (%s) finished launching" % logging.debug("Activity %s (%s) finished launching" %
(self._activity_id, self.get_type)) (self._activity_id, self.get_type()))
self._launched = True self._launched = True
gobject.source_remove(self._launch_timeout_id) gobject.source_remove(self._launch_timeout_id)
self._launch_timeout_id = 0 self._launch_timeout_id = 0