@@ -68,7 +68,7 @@ class MatterEndPoint {
68
68
return false ;
69
69
}
70
70
if (attribute::get_val (attribute, attrVal) == ESP_OK) {
71
- log_v (" GET_VAL Suceess for cluster %d, attribute %d with value %d" , cluster_id, attribute_id, attrVal->val .u32 );
71
+ log_v (" GET_VAL Success for cluster %d, attribute %d with value %d" , cluster_id, attribute_id, attrVal->val .u32 );
72
72
return true ;
73
73
}
74
74
log_e (" GET_VAL FAILED! for cluster %d, attribute %d with value %d" , cluster_id, attribute_id, attrVal->val .u32 );
@@ -82,7 +82,7 @@ class MatterEndPoint {
82
82
return false ;
83
83
}
84
84
if (attribute::set_val (attribute, attrVal) == ESP_OK) {
85
- log_v (" SET_VAL Suceess for cluster %d, attribute %d with value %d" , cluster_id, attribute_id, attrVal->val .u32 );
85
+ log_v (" SET_VAL Success for cluster %d, attribute %d with value %d" , cluster_id, attribute_id, attrVal->val .u32 );
86
86
return true ;
87
87
}
88
88
log_e (" SET_VAL FAILED! for cluster %d, attribute %d with value %d" , cluster_id, attribute_id, attrVal->val .u32 );
@@ -92,7 +92,7 @@ class MatterEndPoint {
92
92
// update the value of an attribute from its cluster id and attribute it
93
93
bool updateAttributeVal (uint32_t cluster_id, uint32_t attribute_id, esp_matter_attr_val_t *attrVal) {
94
94
if (attribute::update (endpoint_id, cluster_id, attribute_id, attrVal) == ESP_OK) {
95
- log_v (" Update Suceess for cluster %d, attribute %d with value %d" , cluster_id, attribute_id, attrVal->val .u32 );
95
+ log_v (" Update Success for cluster %d, attribute %d with value %d" , cluster_id, attribute_id, attrVal->val .u32 );
96
96
return true ;
97
97
}
98
98
log_e (" Update FAILED! for cluster %d, attribute %d with value %d" , cluster_id, attribute_id, attrVal->val .u32 );
0 commit comments