mirror of
https://github.com/owntone/owntone-server.git
synced 2025-04-22 11:35:43 -04:00
Demote "could not find requested meta field" message to E_WARN
This commit is contained in:
parent
5475c18308
commit
1df0258055
@ -1440,7 +1440,7 @@ daap_reply_songlist_generic(struct evhttp_request *req, struct evbuffer *evbuf,
|
|||||||
|
|
||||||
if (!dfm)
|
if (!dfm)
|
||||||
{
|
{
|
||||||
DPRINTF(E_LOG, L_DAAP, "Could not find requested meta field (%d)\n", i + 1);
|
DPRINTF(E_WARN, L_DAAP, "Could not find requested meta field (%d)\n", i + 1);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1769,7 +1769,7 @@ daap_reply_playlists(struct evhttp_request *req, struct evbuffer *evbuf, char **
|
|||||||
dfm = dmap_find_field(meta[i]);
|
dfm = dmap_find_field(meta[i]);
|
||||||
if (!dfm)
|
if (!dfm)
|
||||||
{
|
{
|
||||||
DPRINTF(E_LOG, L_DAAP, "Could not find requested meta field (%d)\n", i + 1);
|
DPRINTF(E_WARN, L_DAAP, "Could not find requested meta field (%d)\n", i + 1);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2013,7 +2013,7 @@ daap_reply_groups(struct evhttp_request *req, struct evbuffer *evbuf, char **uri
|
|||||||
dfm = dmap_find_field(meta[i]);
|
dfm = dmap_find_field(meta[i]);
|
||||||
if (!dfm)
|
if (!dfm)
|
||||||
{
|
{
|
||||||
DPRINTF(E_LOG, L_DAAP, "Could not find requested meta field (%d)\n", i + 1);
|
DPRINTF(E_WARN, L_DAAP, "Could not find requested meta field (%d)\n", i + 1);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user