diff --git a/esphome/components/select/select_call.cpp b/esphome/components/select/select_call.cpp index 45ea241d06..19148d6e03 100644 --- a/esphome/components/select/select_call.cpp +++ b/esphome/components/select/select_call.cpp @@ -63,7 +63,7 @@ optional SelectCall::calculate_target_index_(const char *name) { if (this->operation_ == SELECT_OP_SET || this->operation_ == SELECT_OP_SET_INDEX) { if (!this->index_.has_value()) { - ESP_LOGW(TAG, "'%s' - No option value set for SelectCall", name); + ESP_LOGW(TAG, "'%s' - No option set", name); return {}; } auto idx = this->index_.value();