fix(log): iOS simulator freezes when calling os_log too early (#2626)

let's delay logs on simulator to prevent deadlocks - looks like the logging system isn't available when the Rust process starts, and it's freezing the app (simulator only)

closes https://github.com/tauri-apps/tauri/issues/12172
This commit is contained in:
Lucas Fernandes Nogueira
2025-04-12 12:50:18 -03:00
committed by GitHub
parent db7baff3fc
commit 686a839c96
2 changed files with 39 additions and 8 deletions
+6
View File
@@ -0,0 +1,6 @@
---
"log": patch
"log-js": patch
---
Fix iOS app stuck when using the iOS Simulator and the log plugin due to a deadlock when calling os_log too early.