From df42dfda6b76f40141d4a2a2df12fa11961e1341 Mon Sep 17 00:00:00 2001 From: Will <126089010+Will-Panton@users.noreply.github.com> Date: Tue, 12 Mar 2024 11:05:00 +0000 Subject: [PATCH] Make error message generic for other bridge device types BLE Mesh and ESP now examples also call app_bridge_create_bridged_device so log message shouldn't refer to any particular device type. --- examples/common/app_bridge/app_bridged_device.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/common/app_bridge/app_bridged_device.cpp b/examples/common/app_bridge/app_bridged_device.cpp index 7809a79df..083e11330 100644 --- a/examples/common/app_bridge/app_bridged_device.cpp +++ b/examples/common/app_bridge/app_bridged_device.cpp @@ -173,7 +173,7 @@ app_bridged_device_t *app_bridge_create_bridged_device(node_t *node, uint16_t pa void *priv_data) { if (g_current_bridged_device_count >= MAX_BRIDGED_DEVICE_COUNT) { - ESP_LOGE(TAG, "The device list is full, Could not add a zigbee bridged device"); + ESP_LOGE(TAG, "The device list is full, could not add bridged device"); return NULL; } app_bridged_device_t *new_dev = (app_bridged_device_t *)esp_matter_mem_calloc(1, sizeof(app_bridged_device_t));