mirror of
https://github.com/owntone/owntone-server.git
synced 2025-11-29 05:19:05 -05:00
[httpd] Decrease log level of stream complete messages
This commit is contained in:
@@ -530,7 +530,7 @@ stream_chunk_xcode_cb(int fd, short event, void *arg)
|
||||
if (xcoded <= 0)
|
||||
{
|
||||
if (xcoded == 0)
|
||||
DPRINTF(E_LOG, L_HTTPD, "Done streaming transcoded file id %d\n", st->id);
|
||||
DPRINTF(E_INFO, L_HTTPD, "Done streaming transcoded file id %d\n", st->id);
|
||||
else
|
||||
DPRINTF(E_LOG, L_HTTPD, "Transcoding error, file id %d\n", st->id);
|
||||
|
||||
@@ -617,7 +617,7 @@ stream_chunk_raw_cb(int fd, short event, void *arg)
|
||||
if (ret <= 0)
|
||||
{
|
||||
if (ret == 0)
|
||||
DPRINTF(E_LOG, L_HTTPD, "Done streaming file id %d\n", st->id);
|
||||
DPRINTF(E_INFO, L_HTTPD, "Done streaming file id %d\n", st->id);
|
||||
else
|
||||
DPRINTF(E_LOG, L_HTTPD, "Streaming error, file id %d\n", st->id);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user