From 53620ad4da2f05afef08bd1ee09eed0027b4b2e8 Mon Sep 17 00:00:00 2001 From: Jonathan Gangi Date: Fri, 21 Jun 2024 14:25:07 -0300 Subject: [PATCH] Remove "Not converting empty JSON" message Remove "Not converting empty JSON" message since it was just polluting the logs. Refers to SPSTRAT-285 --- cloudpub/models/common.py | 1 - 1 file changed, 1 deletion(-) diff --git a/cloudpub/models/common.py b/cloudpub/models/common.py index 6786b49..3eea730 100644 --- a/cloudpub/models/common.py +++ b/cloudpub/models/common.py @@ -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