Adjust log messages
This commit is contained in:
parent
76fc9d8936
commit
2c5ab966e5
|
@ -136,7 +136,7 @@ daap_query_parse_sql(const char *daap_query)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
DPRINTF(E_LOG, L_DAAP, "Invalid DAAP query\n");
|
DPRINTF(E_LOG, L_DAAP, "Invalid DAAP query -%s-\n", daap_query);
|
||||||
ret = NULL;
|
ret = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -686,7 +686,7 @@ get_query_params(struct evkeyvalq *query, int *sort_headers, struct query_params
|
||||||
|
|
||||||
qp->filter = daap_query_parse_sql(param);
|
qp->filter = daap_query_parse_sql(param);
|
||||||
if (!qp->filter)
|
if (!qp->filter)
|
||||||
DPRINTF(E_LOG, L_DAAP, "Ignoring improper DAAP query\n");
|
DPRINTF(E_LOG, L_DAAP, "Ignoring improper DAAP query: %s\n", param);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue