audioconvert: demote a debug log to trace_fp

This commit is contained in:
Wim Taymans 2022-06-29 17:30:04 +02:00
parent d1ee783322
commit 7701786016

View file

@ -2355,7 +2355,7 @@ static int impl_node_process(void *object)
if (this->direction == SPA_DIRECTION_INPUT) {
uint32_t out = resample_update_rate_match(this, resample_passthrough, quant_samples, 0);
if (!in_avail || this->drained) {
spa_log_debug(this->log, "%p: no input drained:%d", this, this->drained);
spa_log_trace_fp(this->log, "%p: no input drained:%d", this, this->drained);
/* no input, ask for more */
res |= this->drained ? SPA_STATUS_DRAINED : SPA_STATUS_NEED_DATA;
return res;