From b800dfe6f1a49d20a26c1aa05be4186e8a86ae2d Mon Sep 17 00:00:00 2001 From: Vikram Dattu Date: Tue, 18 Jun 2019 14:04:32 +0530 Subject: [PATCH] Changed log level for spi_master There are lot of prints of `Allocate TX buffer for DMA` Changed these from `ESP_LOGI` to `ESP_LOGD` Signed-off-by: Vikram Dattu --- components/driver/spi_master.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/driver/spi_master.c b/components/driver/spi_master.c index 5976b008f..61376c9b3 100644 --- a/components/driver/spi_master.c +++ b/components/driver/spi_master.c @@ -1174,7 +1174,7 @@ static SPI_MASTER_ISR_ATTR esp_err_t setup_priv_desc(spi_transaction_t *trans_de } if (send_ptr && isdma && !esp_ptr_dma_capable( send_ptr )) { //if txbuf in the desc not DMA-capable, malloc a new one - ESP_LOGI( SPI_TAG, "Allocate TX buffer for DMA" ); + ESP_LOGD( SPI_TAG, "Allocate TX buffer for DMA" ); uint32_t *temp = heap_caps_malloc((trans_desc->length + 7) / 8, MALLOC_CAP_DMA); if (temp == NULL) goto clean_up;