Fabian Deutsch has uploaded a new change for review. Change subject: app: Always log the current page ......................................................................
app: Always log the current page Change-Id: I5444488d4c9fef816783468fb524313d2272096e Bug-Url: https://bugzilla.redhat.com/show_bug.cgi?id=1013547 Signed-off-by: Fabian Deutsch <[email protected]> --- M src/ovirt/node/app.py 1 file changed, 2 insertions(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-node refs/changes/86/20286/1 diff --git a/src/ovirt/node/app.py b/src/ovirt/node/app.py index 6aa3a4a..f8beb47 100644 --- a/src/ovirt/node/app.py +++ b/src/ovirt/node/app.py @@ -262,7 +262,8 @@ content = plugin.ui_content() self.show(content) self.logger.debug("Build and displayed plugin_page in %s seconds" % t) - self.logger.debug("Current page is '%s'" % plugin.ui_name()) + self.logger.debug("Switched to plugin '%s'" % plugin) + self.logger.info("Current page is '%s'" % plugin.ui_name()) def show(self, ui_container): """Shows the ui.Page as a page. -- To view, visit http://gerrit.ovirt.org/20286 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I5444488d4c9fef816783468fb524313d2272096e Gerrit-PatchSet: 1 Gerrit-Project: ovirt-node Gerrit-Branch: node-3.0 Gerrit-Owner: Fabian Deutsch <[email protected]> _______________________________________________ node-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/node-patches
