Skip to content

Commit

Permalink
Remove "Not converting empty JSON" message
Browse files Browse the repository at this point in the history
Remove "Not converting empty JSON" message since it was just polluting
the logs.

Refers to SPSTRAT-285
  • Loading branch information
JAVGan committed Jun 21, 2024
1 parent 4d52dd2 commit 53620ad
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion cloudpub/models/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ def from_json(cls, json: Any):
The converted object from JSON.
"""
if not json:
log.debug("Not converting an empty JSON.")
return

# Ensure it's a dictionary
Expand Down

0 comments on commit 53620ad

Please sign in to comment.