From 904156a406bf23a589f19cd40f1aaa1c421aeb06 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Thu, 30 Apr 2020 22:59:27 +0000 Subject: [PATCH] Log the rachio webhook url --- homeassistant/components/rachio/__init__.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/homeassistant/components/rachio/__init__.py b/homeassistant/components/rachio/__init__.py index a5c9f5ab0a9928..b84ccb8fa5d9c4 100644 --- a/homeassistant/components/rachio/__init__.py +++ b/homeassistant/components/rachio/__init__.py @@ -123,7 +123,11 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry): if not person.controllers: _LOGGER.error("No Rachio devices found in account %s", person.username) return False - _LOGGER.info("%d Rachio device(s) found", len(person.controllers)) + _LOGGER.info( + "%d Rachio device(s) found; The url %s must be accessible from the internet in order to receive updates", + len(person.controllers), + webhook_url, + ) # Enable component hass.data[DOMAIN][entry.entry_id] = person