-
I'm not sure if I encountered a bug or if I am doing something wrong. I am still very new to fiddling with device configuration files. I'm running Home Assistant OS with the Z-Wave JS addon. What I have done is:
The My
Without the I guess you might need more info to debug this or help me out, but I don't know what that would be. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Since you are already fiddling around in the files, can you edit this.logger.print(`Error loading device config ${filePath}`, "error"); Change that to this.logger.print(`Error loading device config ${filePath}: ${e}`, "error"); save and restart. Then we should at least know why the loading fails. |
Beta Was this translation helpful? Give feedback.
Since you are already fiddling around in the files, can you edit
node_modules/@zwave-js/config/build/ConfigManager.js
?There should be a method called
lookupDevicePreserveConditions
, in which you'll find a line like this (probably around line 382, give or take):Change that to
save and restart.
Then we should at least know why the loading fails.