From 04e05af44cbea2156d904d0d34e4e0d41c9725c1 Mon Sep 17 00:00:00 2001 From: Cameron Gray Date: Sun, 5 Feb 2023 12:38:59 +0200 Subject: [PATCH] Add log for successful update in no ip (#87441) * Add Success logging as info message Create "Info Log" for when domain is successfully updated. * Update homeassistant/components/no_ip/__init__.py Co-authored-by: Martin Hjelmare * Closing Parenthesis added * amend as per black suggestion --------- Co-authored-by: Martin Hjelmare --- homeassistant/components/no_ip/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/components/no_ip/__init__.py b/homeassistant/components/no_ip/__init__.py index a903b1af5b6..6688888df01 100644 --- a/homeassistant/components/no_ip/__init__.py +++ b/homeassistant/components/no_ip/__init__.py @@ -105,6 +105,7 @@ async def _update_no_ip( body = await resp.text() if body.startswith("good") or body.startswith("nochg"): + _LOGGER.debug("Updating NO-IP success: %s", domain) return True _LOGGER.warning(