From 971e2869a24e8729a90b3e2dc012564e801608f5 Mon Sep 17 00:00:00 2001 From: MichaelDvP Date: Wed, 30 Oct 2024 16:47:19 +0100 Subject: [PATCH] log mention thermostat dst setting --- src/devices/thermostat.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/devices/thermostat.cpp b/src/devices/thermostat.cpp index 9e0f7cc26..7e93f60f2 100644 --- a/src/devices/thermostat.cpp +++ b/src/devices/thermostat.cpp @@ -1605,10 +1605,11 @@ void Thermostat::process_RCTime(std::shared_ptr telegram) { if (setTimeRetry < 3) { if (!use_dst) { set_datetime("ntp", 0); // set from NTP without dst + LOG_INFO("thermostat time correction from ntp, ignoring dst"); } else { set_datetime("ntp", -1); // set from NTP + LOG_INFO("thermostat time correction from ntp"); } - LOG_INFO("thermostat time correction from ntp"); setTimeRetry++; } } else {