diff options
author | Matthew Lemon <y@yulqen.org> | 2024-09-10 20:39:24 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-09-10 20:39:24 +0100 |
commit | 8d8457d1e9b6d93847198c52b16b55c94070280e (patch) | |
tree | 9ed4393ca50c47437c8d045b31c00e4c1defdc47 /pyblackbird_cc/resources/views.py | |
parent | d9b9e908c3e49d27bef347d72a5fce02302e1de9 (diff) |
Removes exception object from logging statement
Diffstat (limited to 'pyblackbird_cc/resources/views.py')
-rw-r--r-- | pyblackbird_cc/resources/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyblackbird_cc/resources/views.py b/pyblackbird_cc/resources/views.py index f802350..4a61988 100644 --- a/pyblackbird_cc/resources/views.py +++ b/pyblackbird_cc/resources/views.py @@ -115,7 +115,7 @@ def _extract_metadata_from_resource(resource_obj) -> ResourceInfo | None: updated=resource_obj.updated_at, ) except Exception as e: - logging.exception(f"Error extracting resource information: {e}") + logging.exception("Error extracting resource information: ") return None |