Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Websocket-client Python disable output

I am using the websocket-client Python Package. This works fine. But when I send messages to the server the client prints this message to stdout. Is there a possibility to disable this?

like image 513
F.F Avatar asked Mar 09 '23 23:03

F.F


1 Answers

websocket.enableTrace(False) solved this.

like image 162
F.F Avatar answered Mar 24 '23 13:03

F.F