mirror of
https://github.com/esphome/esphome.git
synced 2024-11-12 10:16:02 +01:00
[datetime] Add logs on DateCall perform (#6868)
This commit is contained in:
parent
276eea2b69
commit
861a23d039
@ -80,6 +80,17 @@ void DateCall::validate_() {
|
|||||||
|
|
||||||
void DateCall::perform() {
|
void DateCall::perform() {
|
||||||
this->validate_();
|
this->validate_();
|
||||||
|
ESP_LOGD(TAG, "'%s' - Setting", this->parent_->get_name().c_str());
|
||||||
|
|
||||||
|
if (this->year_.has_value()) {
|
||||||
|
ESP_LOGD(TAG, " Year: %d", *this->year_);
|
||||||
|
}
|
||||||
|
if (this->month_.has_value()) {
|
||||||
|
ESP_LOGD(TAG, " Month: %d", *this->month_);
|
||||||
|
}
|
||||||
|
if (this->day_.has_value()) {
|
||||||
|
ESP_LOGD(TAG, " Day: %d", *this->day_);
|
||||||
|
}
|
||||||
this->parent_->control(*this);
|
this->parent_->control(*this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user