Skip to content

Commit

Permalink
fix: Move Unknown attribute log to debug Koenkk/zigbee2mqtt#22396
Browse files Browse the repository at this point in the history
  • Loading branch information
Koenkk committed May 4, 2024
1 parent 927b67b commit 70e6a9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/zcl/buffaloZcl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,7 @@ class BuffaloZcl extends Buffalo {
try {
attribute = cluster.getAttribute(attributeID).name;
} catch {
logger.info("Unknown attribute " + attributeID + " in cluster " + cluster.name, NS);
logger.debug("Unknown attribute " + attributeID + " in cluster " + cluster.name, NS);
}

frame.attributes[attribute] = this.read(type, options);
Expand Down

0 comments on commit 70e6a9f

Please sign in to comment.