Skip to content

Commit

Permalink
Make error message generic for other bridge device types
Browse files Browse the repository at this point in the history
BLE Mesh and ESP now examples also call app_bridge_create_bridged_device so log message shouldn't refer to any particular device type.
  • Loading branch information
Will-Panton authored Mar 12, 2024
1 parent 16403b0 commit df42dfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/common/app_bridge/app_bridged_device.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit df42dfd

Please sign in to comment.