Skip to content

Commit

Permalink
Downgrade doi fetch error to debug
Browse files Browse the repository at this point in the history
There's nothing an admin can do about, and it doesn't impact tool
functionality.
  • Loading branch information
mvdbeek committed Jun 5, 2024
1 parent 7228c5a commit 7669eff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/managers/citations.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def to_bibtex(self):
try:
self.raw_bibtex = self.doi_cache.get_bibtex(self.__doi)
except Exception:
log.exception("Failed to fetch bibtex for DOI %s", self.__doi)
log.debug("Failed to fetch bibtex for DOI %s", self.__doi)

if self.raw_bibtex is DoiCitation.BIBTEX_UNSET:
return f"""@MISC{{{self.__doi},
Expand Down

0 comments on commit 7669eff

Please sign in to comment.