From 70e6a9fa2f68a8d2eeb141a6b241850f58b2a580 Mon Sep 17 00:00:00 2001 From: Koen Kanters Date: Sat, 4 May 2024 09:36:09 +0200 Subject: [PATCH] fix: Move `Unknown attribute` log to debug https://github.com/Koenkk/zigbee2mqtt/issues/22396 --- src/zcl/buffaloZcl.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zcl/buffaloZcl.ts b/src/zcl/buffaloZcl.ts index 2ffdd8e952..49614f5a4f 100644 --- a/src/zcl/buffaloZcl.ts +++ b/src/zcl/buffaloZcl.ts @@ -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);