Fix log message in VA for IDF 5 (#6839)

This commit is contained in:
Keith Burzinski 2024-05-31 00:49:11 -05:00 committed by GitHub
parent 2894a138e7
commit 1f301df51d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -815,7 +815,7 @@ void VoiceAssistant::on_timer_event(const api::VoiceAssistantTimerEventResponse
};
this->timers_[timer.id] = timer;
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());
switch (msg.event_type) {