mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-09-02 01:33:47 +00:00
webrtc: janus: log message sent as TRACE
The messages received are already logged as TRACE. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/2244>
This commit is contained in:
parent
2fb92cf188
commit
deb7325e7c
1 changed files with 1 additions and 1 deletions
|
@ -367,7 +367,7 @@ impl Signaller {
|
|||
tokio::select! {
|
||||
opt = ws_receiver.next() => match opt {
|
||||
Some(msg) => {
|
||||
gst::log!(CAT, "Sending websocket message {:?}", msg);
|
||||
gst::trace!(CAT, "Sending websocket message {:?}", msg);
|
||||
res = ws_sink
|
||||
.send(WsMessage::text(serde_json::to_string(&msg).unwrap()))
|
||||
.await;
|
||||
|
|
Loading…
Reference in a new issue