We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbe7642 commit 975c701Copy full SHA for 975c701
matter_server/server/device_controller.py
@@ -1111,7 +1111,16 @@ def resubscription_succeeded(
1111
# pylint: disable=protected-access
1112
tlv_attributes = sub._readTransaction._cache.attributeTLVCache
1113
node.attributes.update(parse_attributes_from_read_result(tlv_attributes))
1114
- node_logger.info("Subscription succeeded")
+
1115
+ report_interval_floor, report_interval_ceiling = (
1116
+ sub.GetReportingIntervalsSeconds()
1117
+ )
1118
+ node_logger.info(
1119
+ "Subscription succeeded with report interval [%d, %d]",
1120
+ report_interval_floor,
1121
+ report_interval_ceiling,
1122
1123
1124
self._node_last_seen[node_id] = time.time()
1125
self.server.signal_event(EventType.NODE_UPDATED, node)
1126
0 commit comments