1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-15 08:13:51 +01:00

just store key in flash

This commit is contained in:
J. Nick Koston
2025-10-07 14:54:28 -05:00
parent 9cecbee33a
commit cf1ba30e90
7 changed files with 8 additions and 8 deletions

View File

@@ -193,7 +193,7 @@ void MDNSComponent::dump_config() {
ESP_LOGV(TAG, " - %s, %s, %d", service.service_type.c_str(), service.proto.c_str(),
const_cast<TemplatableValue<uint16_t> &>(service.port).value());
for (const auto &record : service.txt_records) {
ESP_LOGV(TAG, " TXT: %s = %s", record.key.c_str(),
ESP_LOGV(TAG, " TXT: %s = %s", record.key,
const_cast<TemplatableValue<std::string> &>(record.value).value().c_str());
}
}