Skip to content

Commit

Permalink
refactor: Remove redundant error print statement in VendorStore for c…
Browse files Browse the repository at this point in the history
…leaner error logging
  • Loading branch information
abdullai-t committed Dec 6, 2024
1 parent 0a009f0 commit 3c11d51
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/api/store/vendor.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@ def create_vendor(self, context: Context, args, user_submitted) -> Tuple[Vendor,
# ----------------------------------------------------------------
return new_vendor, None
except Exception as e:
print("== ERR==", e)
log.exception(e)
return None, CustomMassenergizeError(e)

Expand Down

0 comments on commit 3c11d51

Please sign in to comment.