Generic Commit; Most likely a fix or small feature

This commit is contained in:
Darius
2025-11-21 20:41:00 +01:00
parent 47d7bf9d9b
commit 162d133eb7

View File

@@ -34,8 +34,8 @@ export class HomeAssistantService extends BaseService<HomeAssistantClient> {
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);
}
}