Log debug instead of error when package diff render fails
we probably don't want email noise about this..
This commit is contained in:
parent
f74c93e3e7
commit
45d4329630
|
@ -231,7 +231,7 @@ class UpgradeView(MasterView):
|
||||||
class_='showing')
|
class_='showing')
|
||||||
return showing + diff.render_html()
|
return showing + diff.render_html()
|
||||||
except:
|
except:
|
||||||
log.exception("failed to render package diff for upgrade: {}".format(upgrade))
|
log.debug("failed to render package diff for upgrade: {}".format(upgrade), exc_info=True)
|
||||||
return "(not available for this upgrade)"
|
return "(not available for this upgrade)"
|
||||||
|
|
||||||
def changelog_link(self, project, url):
|
def changelog_link(self, project, url):
|
||||||
|
|
Loading…
Reference in a new issue