Skip to content

Commit

Permalink
Merge pull request #246 from OpenTreeOfLife/log-get-exceptions
Browse files Browse the repository at this point in the history
log exceptions generated when fetching a study from the docstore
  • Loading branch information
snacktavish authored Jul 18, 2023
2 parents ec6cb5c + 71b6014 commit baad1da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion phylesystem_api/phylesystem_api/views/study.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def fetch_study(request):
except:
comment_html = ''
except:
# _LOG.exception('GET failed')
_LOG.exception('GET failed')
e = sys.exc_info()[0]
raise HTTPBadRequest(e)

Expand Down

0 comments on commit baad1da

Please sign in to comment.