mirror of
https://github.com/owntone/owntone-server.git
synced 2025-02-26 12:59:19 -05:00
[httpd] Decrease log level of stream complete messages
This commit is contained in:
parent
473a29ef8a
commit
6d937469f5
@ -530,7 +530,7 @@ stream_chunk_xcode_cb(int fd, short event, void *arg)
|
|||||||
if (xcoded <= 0)
|
if (xcoded <= 0)
|
||||||
{
|
{
|
||||||
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
|
else
|
||||||
DPRINTF(E_LOG, L_HTTPD, "Transcoding error, file id %d\n", st->id);
|
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)
|
||||||
{
|
{
|
||||||
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
|
else
|
||||||
DPRINTF(E_LOG, L_HTTPD, "Streaming error, file id %d\n", st->id);
|
DPRINTF(E_LOG, L_HTTPD, "Streaming error, file id %d\n", st->id);
|
||||||
|
|
||||||
|
@ -2629,7 +2629,7 @@ dacp_request(struct evhttp_request *req, struct httpd_uri_parsed *uri_parsed)
|
|||||||
/* Content-Type for all DACP replies; can be overriden as needed */
|
/* Content-Type for all DACP replies; can be overriden as needed */
|
||||||
evhttp_add_header(headers, "Content-Type", "application/x-dmap-tagged");
|
evhttp_add_header(headers, "Content-Type", "application/x-dmap-tagged");
|
||||||
|
|
||||||
CHECK_NULL(L_DAAP, hreq->reply = evbuffer_new());
|
CHECK_NULL(L_DACP, hreq->reply = evbuffer_new());
|
||||||
|
|
||||||
hreq->handler(hreq);
|
hreq->handler(hreq);
|
||||||
|
|
||||||
|
@ -68,7 +68,7 @@ oauth_reply_spotify(struct httpd_request *hreq)
|
|||||||
static int
|
static int
|
||||||
oauth_reply_spotify(struct httpd_request *hreq)
|
oauth_reply_spotify(struct httpd_request *hreq)
|
||||||
{
|
{
|
||||||
DPRINTF(E_LOG, L_HTTPD, "This version of forked-daapd was built without support for Spotify\n");
|
DPRINTF(E_LOG, L_WEB, "This version of forked-daapd was built without support for Spotify\n");
|
||||||
|
|
||||||
httpd_send_error(hreq->req, HTTP_NOTFOUND, "This version of forked-daapd was built without support for Spotify");
|
httpd_send_error(hreq->req, HTTP_NOTFOUND, "This version of forked-daapd was built without support for Spotify");
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user