From 162d133eb709d29efb43279d24c6fba7318bbe73 Mon Sep 17 00:00:00 2001 From: Darius Date: Fri, 21 Nov 2025 20:41:00 +0100 Subject: [PATCH] Generic Commit; Most likely a fix or small feature --- src/homeassistant/service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/homeassistant/service.ts b/src/homeassistant/service.ts index 2fc7809..0bcfd8f 100644 --- a/src/homeassistant/service.ts +++ b/src/homeassistant/service.ts @@ -34,8 +34,8 @@ export class HomeAssistantService extends BaseService { return this.getSuccessfulResult(result); } catch (error) { - const error_message = "error starting stand automation"; - logWarning(error_message, error); + const error_message = `error starting stand automation. ${error}`; + logWarning(error_message); return this.getErrorResult(error_message); } }