mirror of
https://github.com/esphome/esphome.git
synced 2025-01-08 19:27:43 +01:00
Fix log message in VA for IDF 5 (#6839)
This commit is contained in:
parent
2894a138e7
commit
1f301df51d
@ -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) {
|
||||||
|
Loading…
Reference in New Issue
Block a user