audioconvert: change warning to info

Change log level to info when stopped node gets ready callback since it
can happen and it is not a problem.
This commit is contained in:
Jonas Holmberg 2022-12-09 11:17:52 +01:00
parent bccd33c4ab
commit 4e3103f566

View file

@ -1203,7 +1203,7 @@ static int follower_ready(void *data, int status)
spa_log_trace_fp(this->log, "%p: ready %d", this, status);
if (!this->started) {
spa_log_warn(this->log, "%p: ready stopped node", this);
spa_log_info(this->log, "%p: ready stopped node", this);
return -EIO;
}