diff --git a/esphome/components/api/api_server.cpp b/esphome/components/api/api_server.cpp index d2b9a0cfb9..a79fc99a72 100644 --- a/esphome/components/api/api_server.cpp +++ b/esphome/components/api/api_server.cpp @@ -167,7 +167,7 @@ void APIServer::loop() { // Network is down - disconnect all clients for (auto &client : this->clients_) { client->on_fatal_error(); - ESP_LOGW(TAG, "%s: Network unavailable; disconnecting", client->get_client_combined_info().c_str()); + ESP_LOGW(TAG, "%s: Network down; disconnecting", client->get_client_combined_info().c_str()); } // Continue to process and clean up the clients below }