mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-06-04 20:09:35 +02:00
Fix log message in VA for IDF 5 (#6839)
This commit is contained in:
@@ -815,7 +815,7 @@ void VoiceAssistant::on_timer_event(const api::VoiceAssistantTimerEventResponse
|
|||||||
};
|
};
|
||||||
this->timers_[timer.id] = timer;
|
this->timers_[timer.id] = timer;
|
||||||
ESP_LOGD(TAG, "Timer Event");
|
ESP_LOGD(TAG, "Timer Event");
|
||||||
ESP_LOGD(TAG, " Type: %d", msg.event_type);
|
ESP_LOGD(TAG, " Type: %" PRId32, msg.event_type);
|
||||||
ESP_LOGD(TAG, " %s", timer.to_string().c_str());
|
ESP_LOGD(TAG, " %s", timer.to_string().c_str());
|
||||||
|
|
||||||
switch (msg.event_type) {
|
switch (msg.event_type) {
|
||||||
|
|||||||
Reference in New Issue
Block a user