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);