Skip to content

Commit

Permalink
2024.4.1: Fix find screen log message
Browse files Browse the repository at this point in the history
Co-authored-by: chertvl <[email protected]>
  • Loading branch information
andrewjswan and chertvl committed Apr 5, 2024
1 parent b7a09e3 commit e10f9ec
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 e10f9ec

Please sign in to comment.