mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-23 12:01:01 +00:00
reqwesthttpsrc: Fix debug output for received chunks
This commit is contained in:
parent
fecf4bac2e
commit
6888b08db2
1 changed files with 1 additions and 1 deletions
|
@ -725,7 +725,7 @@ impl BaseSrcImpl for ReqwestHttpSrc {
|
|||
Ok((Some(chunk), current_body)) => {
|
||||
/* do something with the chunk and store the body again in the state */
|
||||
|
||||
gst_debug!(cat, obj: src, "Data Received {:?}", chunk);
|
||||
gst_debug!(cat, obj: src, "Chunk of {} bytes received", chunk.len());
|
||||
let size = chunk.len();
|
||||
assert_ne!(chunk.len(), 0);
|
||||
|
||||
|
|
Loading…
Reference in a new issue