Adjust warning for missing entites (#71343)

This commit is contained in:
Joakim Plate 2022-05-09 12:37:24 +02:00 committed by GitHub
parent 587a29c723
commit 2dbe910e31
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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