Skip to content

Commit

Permalink
Add more detail to unhandled exceptions (#279)
Browse files Browse the repository at this point in the history
* Add exceptions detail

* Added missing packagename
  • Loading branch information
fernandocollova committed Oct 2, 2021
1 parent b161dbf commit 242ac34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gplaycli/gplaycli.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ def download(self, pkg_todownload):
unavail_downloads.append((item, exc))
continue
except Exception as exc:
logger.error("Error while downloading %s : %s", packagename, exc)
logger.exception("Error while downloading %s", packagename, exc_info=exc)
failed_downloads.append((item, exc))
continue

Expand Down

0 comments on commit 242ac34

Please sign in to comment.