From be52da0604471ebef434cb6840dd3bcd64963277 Mon Sep 17 00:00:00 2001 From: YoungSoo Shin Date: Wed, 3 Sep 2025 14:05:38 +0900 Subject: [PATCH] Update: Correct log message to display UTC instead of KST time Signed-off-by: YoungSoo Shin --- main/wifi/wifi_helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/wifi/wifi_helper.c b/main/wifi/wifi_helper.c index 95d3c92..07759f7 100644 --- a/main/wifi/wifi_helper.c +++ b/main/wifi/wifi_helper.c @@ -138,7 +138,7 @@ void time_sync_notification_cb(struct timeval* tv) time(&now); localtime_r(&now, &timeinfo); strftime(strftime_buf, sizeof(strftime_buf), "%c", &timeinfo); - ESP_LOGI(TAG, "The current date/time in KST is: %s", strftime_buf); + ESP_LOGI(TAG, "The current date/time in UTC is: %s", strftime_buf); } void initialize_sntp(void)