From c5fa8a63aed8a09e1c5799d6ccf954cc1409f7f9 Mon Sep 17 00:00:00 2001 From: ismail Date: Wed, 20 Aug 2025 10:42:26 +0300 Subject: [PATCH] Fix NVS module's tag value. Fix NVS module's tag string value to match the module name. IssueID #1081. --- src/relay_chn_nvs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/relay_chn_nvs.c b/src/relay_chn_nvs.c index 467ad12..c4fdb80 100644 --- a/src/relay_chn_nvs.c +++ b/src/relay_chn_nvs.c @@ -13,7 +13,7 @@ #define RELAY_CHN_KEY_TCNT(ch) "tcnt_%d" /*!< Tilt count key */ #endif -static const char *TAG = "RELAY_CHN_STORAGE_NVS"; +static const char *TAG = "RELAY_CHN_NVS"; static nvs_handle_t relay_chn_nvs;