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 {