1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-06-16 06:15:24 +00:00

Update: Added DDEBUG line in text_get_buffer()

This commit is contained in:
Philipp Schafft 2022-02-28 10:21:08 +00:00
parent e6ab93d437
commit ce814ba303

View File

@ -62,6 +62,8 @@ static refbuf_t *text_get_buffer(source_t *source)
refbuf_t *refbuf = refbuf_new(1024);
ssize_t bytes;
ICECAST_LOG_DDEBUG("Trying to read buffer.");
bytes = client_body_read(source->client, refbuf->data, refbuf->len);
if (bytes < 0) {
/* Why do we do this here (not source.c)? -- ph3-der-loewe, 2018-04-17 */