This commit is contained in:
J. Nick Koston 2023-06-05 18:36:21 -05:00
parent c6e07d90ed
commit 92b9dc5669
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -533,7 +533,7 @@ namespace ratgdo {
// Lock functions
void RATGDOComponent::lock(){
if(this->lockStates[this->store_.lockState] == "locked"){
ESP_LOGD(TAG, ("already locked");
ESP_LOGD(TAG, "already locked");
}else{
toggleLock();
}
@ -541,7 +541,7 @@ namespace ratgdo {
void RATGDOComponent::unlock(){
if(this->lockStates[this->store_.lockState] == "unlocked"){
ESP_LOGD(TAG, ("already unlocked");
ESP_LOGD(TAG, "already unlocked");
}else{
toggleLock();
}