context: make some errors less verbose, like libpulse

This commit is contained in:
Wim Taymans 2018-10-09 16:36:45 +02:00
parent 6a4da8a6b3
commit a82a5dc26a
2 changed files with 1 additions and 5 deletions

View file

@ -33,7 +33,7 @@
int pa_context_set_error(pa_context *c, int error) {
pa_assert(error >= 0);
pa_assert(error < PA_ERR_MAX);
pw_log_error("context %p: error %d", c, error);
pw_log_debug("context %p: error %d", c, error);
if (c)
c->error = error;
return error;