Skip to content

Commit cd7a775

Browse files
authored
fix(matter): missing logged message type value
1 parent 0e22bb4 commit cd7a775

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: libraries/Matter/src/Matter.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ static esp_err_t app_attribute_update_cb(
6868
// This callback is invoked when clients interact with the Identify Cluster.
6969
// In the callback implementation, an endpoint can identify itself. (e.g., by flashing an LED or light).
7070
static esp_err_t app_identification_cb(identification::callback_type_t type, uint16_t endpoint_id, uint8_t effect_id, uint8_t effect_variant, void *priv_data) {
71-
log_d("Identification callback to endpoint %d: type: %u, effect: %u, variant: %u", endpoint_id, effect_id, effect_variant);
71+
log_d("Identification callback to endpoint %d: type: %u, effect: %u, variant: %u", endpoint_id, type, effect_id, effect_variant);
7272
esp_err_t err = ESP_OK;
7373
MatterEndPoint *ep = (MatterEndPoint *)priv_data; // endpoint pointer to base class
7474
// Identify the endpoint sending a counter to the application

0 commit comments

Comments
 (0)