Skip to content

Commit

Permalink
Merge pull request #228 from andrewjswan/2024.4.1-Fix_find_screen_log…
Browse files Browse the repository at this point in the history
…_message

2024.4.1: Fix `find screen` log message
  • Loading branch information
lubeda authored Apr 5, 2024
2 parents b7a09e3 + e10f9ec commit 7a1648e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/ehmtxv2/EHMTX.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2307,7 +2307,7 @@ namespace esphome
{
if (this->queue[i]->mode == mode && strcmp(this->queue[i]->icon_name.c_str(), name.c_str()) == 0)
{
ESP_LOGD(TAG, "find screen: found by mode %d icon %s", i, name);
ESP_LOGD(TAG, "find screen: found by mode %d icon %s", i, name.c_str());
return this->queue[i];
}
}
Expand Down

0 comments on commit 7a1648e

Please sign in to comment.