When using websocket in dev, how to stop the console to output all the data sent?

Hi!

I’m running Sanic with the following parameters:

  • dev: True
  • access_log: True

I have a lot of

[2023-02-01 16:32:27 +0100] [371455] [DEBUG] > PING d7 bb 94 cb [binary, 4 bytes]
[2023-02-01 16:32:27 +0100] [371455] [DEBUG] < PONG d7 bb 94 cb [binary, 4 bytes]
[2023-02-01 16:32:42 +0100] [371455] [DEBUG] < TEXT 'ping' [4 bytes]

And lots of other messages that I don’t want to see sent/received from Websocket.
How can I remove these while keeping the output to debug ? (if possible)

Thanks in advance!