Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 28140d3

Browse files
committedMar 9, 2024·
cleanup noisy error log
1 parent b40aef8 commit 28140d3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎docker_stuff/python_stuff/websocket_handler.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -165,9 +165,9 @@ def __init__(self, response_data):
165165
try:
166166
self.results = json.loads(response_data["results_json"])
167167
except json.JSONDecodeError as json_error:
168-
logger.error(
169-
f"Error decoding JSON message in Extracted Response: {json_error}."
170-
)
168+
#logger.error(
169+
# f"Error decoding JSON message in Extracted Response: {json_error}."
170+
#)
171171
self.results = ""
172172

173173
if self.event_type == "OK":

0 commit comments

Comments
 (0)
Please sign in to comment.