-
I see in the log:
What does “reason 5” stand for? |
Beta Was this translation helpful? Give feedback.
Answered by
kpine
Oct 4, 2024
Replies: 0 comments 1 reply
-
That's a log message from Z-Wave JS UI, here. Going to the driver docs for "node removed" controller event, you'll see the reason values defined: enum RemoveNodeReason {
/** The node was excluded by the user or an inclusion controller */
Excluded,
/** The node was excluded by an inclusion controller */
ProxyExcluded,
/** The node was removed using the "remove failed node" feature */
RemoveFailed,
/** The node was replaced using the "replace failed node" feature */
Replaced,
/** The node was replaced by an inclusion controller */
ProxyReplaced,
/** The node was reset locally and was auto-removed */
Reset,
/** SmartStart inclusion failed, and the node was auto-removed as a result. */
SmartStartFailed,
} So |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
bronger
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
That's a log message from Z-Wave JS UI, here.
Going to the driver docs for "node removed" controller event, you'll see the reason values defined: