[sht3xd] Combine log statements to reduce loop blocking (#12957)

This commit is contained in:
J. Nick Koston
2026-01-05 02:14:57 +00:00
committed by GitHub
parent 12027569d3
commit a011d5ea96
+4 -2
View File
@@ -60,8 +60,10 @@ void SHT3XDComponent::dump_config() {
ESP_LOGE(TAG, " Communication with SHT3xD failed!");
return;
}
ESP_LOGD(TAG, " Serial Number: 0x%08" PRIX32, this->serial_number_);
ESP_LOGD(TAG, " Heater Enabled: %s", this->heater_enabled_ ? "true" : "false");
ESP_LOGD(TAG,
" Serial Number: 0x%08" PRIX32 "\n"
" Heater Enabled: %s",
this->serial_number_, TRUEFALSE(this->heater_enabled_));
LOG_I2C_DEVICE(this);
LOG_UPDATE_INTERVAL(this);