We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07bdfcf commit 2e4340fCopy full SHA for 2e4340f
main/src/user/ntp.c
@@ -29,7 +29,8 @@ static void ntp_time_sync_notification_cb(struct timeval *tv)
29
localtime_r(&now, &timeinfo);
30
strftime(strftime_buf, sizeof(strftime_buf), "%c", &timeinfo);
31
32
- ESP_LOGW(TAG, "the current date/time is: %s %s", CONFIG_NTP_TIMEZONE, strftime_buf);
+ ESP_LOGW(TAG, "current timezone: %s", CONFIG_NTP_TIMEZONE);
33
+ ESP_LOGW(TAG, "current date/time: %s", strftime_buf);
34
35
xEventGroupSetBits(user_event_group, NTP_READY_BIT);
36
}
0 commit comments