Skip to content

Commit 1540ec0

Browse files
committed
[DNM] audio: host: Reduce the amount of logs
Reducing the logging level for the purpose of the test. In the local environment, a large amount of logs generated by this component resulted in IPC timeouts. Signed-off-by: Tomasz Leman <tomasz.m.leman@intel.com>
1 parent 988e6fc commit 1540ec0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/audio/host-zephyr.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -404,8 +404,8 @@ static uint32_t host_get_copy_bytes_normal(struct host_data *hd, struct comp_dev
404404
dma_copy_bytes = MIN(hd->period_bytes, dma_copy_bytes);
405405

406406
if (!dma_copy_bytes)
407-
comp_info(dev, "no bytes to copy, available samples: %d, free_samples: %d",
408-
avail_samples, free_samples);
407+
comp_dbg(dev, "no bytes to copy, available samples: %d, free_samples: %d",
408+
avail_samples, free_samples);
409409

410410
/* dma_copy_bytes should be aligned to minimum possible chunk of
411411
* data to be copied by dma.

0 commit comments

Comments
 (0)