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