Skip to content

Commit

Permalink
fix #229
Browse files Browse the repository at this point in the history
  • Loading branch information
hobbyquaker committed Dec 21, 2019
1 parent bb957ce commit 6fd200c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zigbee-devices/lib/accessory.js
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ module.exports = class Accessory {
}

identify(paired, callback) {
this.node.log('identify ' + (paired ? '(paired)' : '(unpaired)') + ' ' + this.config.name + ' ' + this.config.description.TYPE + ' ' + this.config.description.ADDRESS);
this.node.log('identify ' + (paired ? '(paired)' : '(unpaired)') + ' ' + this.device.manufacturerName + ' ' + this.device.meta.name + ' ' + this.device.modelID + ' ' + this.device.ieeeAddr);
try {
callback();
} catch (error) {
Expand Down

0 comments on commit 6fd200c

Please sign in to comment.