Skip to content

Commit 774229e

Browse files
committed
less debug
1 parent daa9630 commit 774229e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

py_boilingdata/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,15 +175,15 @@ def _get_credentials(self):
175175
return self.aws_creds
176176

177177
async def _ws_send(self, msg):
178-
print(f"> {msg}")
178+
# print(f"> {msg}")
179179
return self.ws_app.send(msg)
180180

181181
def _on_open(self, ws_app):
182182
print("WS OPEN")
183183
self.bd_is_open = True
184184

185185
def _on_msg(self, ws_app, data):
186-
print(f"< {data}")
186+
# print(f"< {data}")
187187
msg = json.loads(data)
188188
reqId = msg.get("requestId")
189189
if not reqId:

0 commit comments

Comments
 (0)