From 6fd8cbb9b48ea06abdd533cfd9fa0c3b9203072c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20J=C3=A4ger?= Date: Fri, 18 Dec 2020 14:35:08 +0100 Subject: [PATCH] storage: stream: flash: update log output MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit LOG_DBG is more appropriate for this logging output than LOG_INF. Signed-off-by: Martin Jäger --- subsys/storage/stream/stream_flash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subsys/storage/stream/stream_flash.c b/subsys/storage/stream/stream_flash.c index 07244b69cdc..9b5d01e4fe6 100644 --- a/subsys/storage/stream/stream_flash.c +++ b/subsys/storage/stream/stream_flash.c @@ -34,7 +34,7 @@ int stream_flash_erase_page(struct stream_flash_ctx *ctx, off_t off) } ctx->last_erased_page_start_offset = page.start_offset; - LOG_INF("Erasing page at offset 0x%08lx", (long)page.start_offset); + LOG_DBG("Erasing page at offset 0x%08lx", (long)page.start_offset); flash_write_protection_set(ctx->fdev, false); rc = flash_erase(ctx->fdev, page.start_offset, page.size);