-
-
Notifications
You must be signed in to change notification settings - Fork 3.2k
refactor(core): improve iOS log messages from stdout/stderr #14385
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
move the stdout/stderr forward logic to Swift so it does not consume a Rust thread and never deadlocks on the simulator I had to work on this because i'm facing #12172 again on latest Xcode (26.1)
|
another benefit is that the Xcode console now properly shows all messages (OSLog events and stdout/stderr) |
Package Changes Through 9e0bbffThere are 3 changes which include tauri-bundler with patch, tauri with patch, tauri-macros with patch Planned Package VersionsThe following package releases are the planned based on the context of changes in this pull request.
Add another change file through the GitHub UI by following this link. Read about change files or the docs at github.com/jbolda/covector |
|
@lucasfernog This is great and affecting us locally - would be great to see this shipped. |
|
@will3942 did you try it in your project? did it work well? |
|
sometimes it logs stdout/stderr messages twice, I didn't have much more time to investigate. But at least it never freezes, which is really annoying. |
FabianLars
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(untested)
probably not too much of an issue, so can be looked into later imo |
move the stdout/stderr forward logic to Swift so it does not consume a Rust thread and never deadlocks on the simulator
I had to work on this because i'm facing #12172 again on latest Xcode (26.1)