mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2026-07-02 01:51:38 +00:00
Fix groupid logging.
This commit is contained in:
+2
-2
@@ -131,8 +131,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})` : '' +
|
||||
(message.groupid ? ` with groupID ${message.groupID}` : ''))
|
||||
(device ? ` of device '${device.modelId}' (${device.ieeeAddr})` : '') +
|
||||
(message.groupid ? ` with groupID ${message.groupID}` : '')
|
||||
);
|
||||
|
||||
// Call extensions.
|
||||
|
||||
Reference in New Issue
Block a user