From 11caf627feefb8b883aa1fc90a53f0cd21c3e63f Mon Sep 17 00:00:00 2001 From: Northern Man <19808920+NorthernMan54@users.noreply.github.com> Date: Mon, 16 Dec 2024 08:38:22 -0500 Subject: [PATCH] deviceCleanup --- CHANGELOG.md | 2 +- src/lib/alexaActions.js | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1254f60..a9f9535 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ All notable changes to this project will be documented in this file. This projec #### Changes -- Changed behaviour for missing devices, and have the plugin inform Alexa about some missing devices so they can be automatically deleted. Feature is enabled with the config option `deviceCleanup`. Currently only removes devices when it detects that the homebridge instance / child bridge associated with the device is no longer available. +- Changed behaviour for missing devices, and have updated the plugin inform Alexa about some missing devices so they can be automatically deleted. Feature is enabled with the config option `deviceCleanup`. Currently only removes devices when it detects that the homebridge instance / child bridge associated with the device is no longer available. - Improved performance on `Alexa turn off all the lights` diff --git a/src/lib/alexaActions.js b/src/lib/alexaActions.js index f6c8546..d0e0531 100644 --- a/src/lib/alexaActions.js +++ b/src/lib/alexaActions.js @@ -998,6 +998,7 @@ function alexaMessage(message, callback) { // debug("alexaMessage - statusArray", statusArray); processStatusArray.call(this, statusArray, message).then(response => { + debug("alexaMessage:Response:", JSON.stringify(response)); callback(null, response); }).catch(err => { debug("alexaMessage:Error:", err.message);