Skip to content

Commit

Permalink
Merge pull request #18330 from mvdbeek/downgrade_doi_fetch_error
Browse files Browse the repository at this point in the history
[24.0] Downgrade doi fetch error to debug
  • Loading branch information
martenson authored Jun 5, 2024
2 parents 7228c5a + 7669eff commit b208eac
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 b208eac

Please sign in to comment.