Log exception when failing to get the library

This commit is contained in:
Eddy Hintze 2020-08-10 19:04:39 +00:00
parent 8561180f3f
commit 29cf5d7f62

View File

@ -370,7 +370,7 @@ class DownloadLibrary:
try:
library_r = self.session.get('https://www.humblebundle.com/home/library') # noqa: E501
except Exception:
logger.error("Failed to get list of purchases")
logger.exception("Failed to get list of purchases")
return []
logger.debug("Library request: " + str(library_r))