We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent daa9630 commit 774229eCopy full SHA for 774229e
1 file changed
py_boilingdata/__init__.py
@@ -175,15 +175,15 @@ def _get_credentials(self):
175
return self.aws_creds
176
177
async def _ws_send(self, msg):
178
- print(f"> {msg}")
+ # print(f"> {msg}")
179
return self.ws_app.send(msg)
180
181
def _on_open(self, ws_app):
182
print("WS OPEN")
183
self.bd_is_open = True
184
185
def _on_msg(self, ws_app, data):
186
- print(f"< {data}")
+ # print(f"< {data}")
187
msg = json.loads(data)
188
reqId = msg.get("requestId")
189
if not reqId:
0 commit comments