Log debug instead of error when package diff render fails

we probably don't want email noise about this..
This commit is contained in:
Lance Edgar 2017-08-20 13:12:55 -05:00
parent f74c93e3e7
commit 45d4329630

View file

@ -231,7 +231,7 @@ class UpgradeView(MasterView):
class_='showing')
return showing + diff.render_html()
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)"
def changelog_link(self, project, url):