From 4e3103f56693f013583469735117739668df312e Mon Sep 17 00:00:00 2001 From: Jonas Holmberg Date: Fri, 9 Dec 2022 11:17:52 +0100 Subject: [PATCH] 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. --- spa/plugins/audioconvert/audioadapter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spa/plugins/audioconvert/audioadapter.c b/spa/plugins/audioconvert/audioadapter.c index d7ab2fc3b..1137aacee 100644 --- a/spa/plugins/audioconvert/audioadapter.c +++ b/spa/plugins/audioconvert/audioadapter.c @@ -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; }