From 2dbe910e312dad4c4d7f808850b642f41877f552 Mon Sep 17 00:00:00 2001 From: Joakim Plate Date: Mon, 9 May 2022 12:37:24 +0200 Subject: [PATCH] Adjust warning for missing entites (#71343) --- homeassistant/helpers/service.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/homeassistant/helpers/service.py b/homeassistant/helpers/service.py index 9d446f10913..4cd38aa9768 100644 --- a/homeassistant/helpers/service.py +++ b/homeassistant/helpers/service.py @@ -127,7 +127,10 @@ class SelectedEntities: if not parts: return - _LOGGER.warning("Unable to find referenced %s", ", ".join(parts)) + _LOGGER.warning( + "Unable to find referenced %s or it is/they are currently not available", + ", ".join(parts), + ) @bind_hass