@@ -68,7 +68,7 @@ class MatterEndPoint {
6868 return false ;
6969 }
7070 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 );
7272 return true ;
7373 }
7474 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 {
8282 return false ;
8383 }
8484 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 );
8686 return true ;
8787 }
8888 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 {
9292 // update the value of an attribute from its cluster id and attribute it
9393 bool updateAttributeVal (uint32_t cluster_id, uint32_t attribute_id, esp_matter_attr_val_t *attrVal) {
9494 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 );
9696 return true ;
9797 }
9898 log_e (" Update FAILED! for cluster %d, attribute %d with value %d" , cluster_id, attribute_id, attrVal->val .u32 );
0 commit comments