Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 33e1193

Browse files
committedDec 30, 2024
components/esp-matter: remove the unnecessary debug log
Fixes #1221
1 parent a07c312 commit 33e1193

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed
 

‎components/esp_matter/esp_matter_core.cpp

+1-3
Original file line numberDiff line numberDiff line change
@@ -1720,8 +1720,6 @@ endpoint_t *resume(node_t *node, uint8_t flags, uint16_t endpoint_id, void *priv
17201720
return NULL;
17211721
}
17221722

1723-
ESP_LOGE(TAG, "cluster in endpoint type:%p", endpoint->endpoint_type->cluster);
1724-
17251723
/* Set */
17261724
endpoint->endpoint_id = endpoint_id;
17271725
endpoint->device_type_count = 0;
@@ -1917,7 +1915,7 @@ esp_err_t set_parent_endpoint(endpoint_t *endpoint, endpoint_t *parent_endpoint)
19171915
void *get_priv_data(uint16_t endpoint_id)
19181916
{
19191917
node_t *node = node::get();
1920-
/* This is not an error, since the node will not be initialized for application using the data model from zap */
1918+
/* This is not an error, since the node will not be initialized for application using the data model from zap */
19211919
VerifyOrReturnValue(node, NULL, ESP_LOGE(TAG, "Node not found"));
19221920
endpoint_t *endpoint = get(node, endpoint_id);
19231921
VerifyOrReturnValue(endpoint, NULL, ESP_LOGE(TAG, "Endpoint not found"));

0 commit comments

Comments
 (0)
Please sign in to comment.