From adcd4e59cf216dccd308694b54462cdcb78faff4 Mon Sep 17 00:00:00 2001 From: Ruslan Sayfutdinov <ruslan@sayfutdinov.com> Date: Sun, 12 Nov 2023 16:18:12 +0000 Subject: [PATCH] More useful message on services.yaml parse error (#103847) --- homeassistant/helpers/service.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/homeassistant/helpers/service.py b/homeassistant/helpers/service.py index 3c6bf4436eb..32f51a924f7 100644 --- a/homeassistant/helpers/service.py +++ b/homeassistant/helpers/service.py @@ -549,9 +549,11 @@ def _load_services_file(hass: HomeAssistant, integration: Integration) -> JSON_T "Unable to find services.yaml for the %s integration", integration.domain ) return {} - except (HomeAssistantError, vol.Invalid): + except (HomeAssistantError, vol.Invalid) as ex: _LOGGER.warning( - "Unable to parse services.yaml for the %s integration", integration.domain + "Unable to parse services.yaml for the %s integration: %s", + integration.domain, + ex, ) return {} -- GitLab