DSK Backup logs - Where do I find them?

Option 1:

  1. Select the Debug tab
  2. Select the “open in window” icon, it opens a dedicated browser window for logs messages
  3. Go back to the original window and then back to the Control Panel
  4. Click the Blue FAB button (hamburger) in the lower right
  5. Select Advanced actions (magic wand)
  6. Under “Driver function” select WRITE
  7. In the driver function text box paste this code that prints each DSK (or not) to the debug window:
const { logger, require } = this
const { dskToString } = require('@zwave-js/core')

for (const node of driver.controller.nodes.values()) {
  if (node.dsk) {
    logger.info(`Node ${node.id} has DSK ${dskToString(node.dsk)}`);
  } else {
    logger.info(`Node ${node.id} has no DSK`);
  }
}
  1. Select the “Run” button
  2. Look in the debug window and each node with its DSK will be printed

Option 2:

  1. Goto the Control Panel
  2. Expand the desired device
  3. Select Advanced
  4. Under “Export json” select DRIVER
  5. It will download a JSON file
  6. Open the JSON file and look for “dsk”
  7. Repeat for each device