mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2026-08-28 05:24:29 +00:00
Log groupID. #1238
This commit is contained in:
+2
-1
@@ -130,7 +130,8 @@ class Controller {
|
||||
// Log
|
||||
logger.debug(
|
||||
`Received zigbee message of type '${message.type}' with data '${JSON.stringify(message.data)}'` +
|
||||
(device ? ` of device '${device.modelId}' (${device.ieeeAddr})` : '')
|
||||
(device ? ` of device '${device.modelId}' (${device.ieeeAddr})` : '' +
|
||||
(message.groupid ? ` with groupID ${message.groupID}` : ''))
|
||||
);
|
||||
|
||||
// Call extensions.
|
||||
|
||||
Reference in New Issue
Block a user