Mercurial > libervia-web
changeset 527:4c6d7db9b45c
browser_side: change a log.debug to log.error
author | souliane <souliane@mailoo.org> |
---|---|
date | Fri, 05 Sep 2014 10:40:52 +0200 |
parents | ee38b6a87692 |
children | ac66b8b11ab8 |
files | src/browser/sat_browser/base_widget.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/browser/sat_browser/base_widget.py Wed Sep 03 20:53:07 2014 +0200 +++ b/src/browser/sat_browser/base_widget.py Fri Sep 05 10:40:52 2014 +0200 @@ -267,7 +267,7 @@ while current is not None and not isinstance(current, class_): current = Widget.getParent(current) if current is None and expect: - log.debug("Can't find parent %s for %s" % (class_, self)) + log.error("Can't find parent %s for %s" % (class_, self)) return current def onClick(self, sender):