Skip to content

Commit c52a1e8

Browse files
committed
Merge branch 'pr_868' into 'main'
[GH_PR] Make error message generic for other bridge device types (CON-1083) See merge request app-frameworks/esp-matter!664
2 parents 16403b0 + df42dfd commit c52a1e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/common/app_bridge/app_bridged_device.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ app_bridged_device_t *app_bridge_create_bridged_device(node_t *node, uint16_t pa
173173
void *priv_data)
174174
{
175175
if (g_current_bridged_device_count >= MAX_BRIDGED_DEVICE_COUNT) {
176-
ESP_LOGE(TAG, "The device list is full, Could not add a zigbee bridged device");
176+
ESP_LOGE(TAG, "The device list is full, could not add bridged device");
177177
return NULL;
178178
}
179179
app_bridged_device_t *new_dev = (app_bridged_device_t *)esp_matter_mem_calloc(1, sizeof(app_bridged_device_t));

0 commit comments

Comments
 (0)