Skip to content

Commit

Permalink
cleanup noisy error log
Browse files Browse the repository at this point in the history
  • Loading branch information
UTXOnly committed Mar 9, 2024
1 parent b40aef8 commit 28140d3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker_stuff/python_stuff/websocket_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,9 +165,9 @@ def __init__(self, response_data):
try:
self.results = json.loads(response_data["results_json"])
except json.JSONDecodeError as json_error:
logger.error(
f"Error decoding JSON message in Extracted Response: {json_error}."
)
#logger.error(
# f"Error decoding JSON message in Extracted Response: {json_error}."
#)
self.results = ""

if self.event_type == "OK":
Expand Down

0 comments on commit 28140d3

Please sign in to comment.