fix: use tracing::warn! instead of bare warn! in engine.rs

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Siavash Sameni
2026-04-12 17:31:12 +04:00
parent 15c237ceea
commit 114d69e488

View File

@@ -442,7 +442,7 @@ impl CallEngine {
#[cfg(target_os = "android")] #[cfg(target_os = "android")]
{ {
if let Err(e) = crate::android_audio::set_audio_mode_communication() { if let Err(e) = crate::android_audio::set_audio_mode_communication() {
warn!("set_audio_mode_communication failed: {e}"); tracing::warn!("set_audio_mode_communication failed: {e}");
} }
} }