Skip to content

Commit

Permalink
fix(ios): simctl log output filtering (#279)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog authored Feb 25, 2024
1 parent 78181eb commit 92eda19
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changes/fix-simctl-filter.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"cargo-mobile2": patch
---

Fixes log output on iOS simulators.
2 changes: 1 addition & 1 deletion src/apple/device/simctl/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ pub fn run(
"--level",
"debug",
"--predicate",
&format!("subsystem == \"{app_id}\""),
&format!("process == \"{}\"", config.app().stylized_name()),
],
)
.vars(env.explicit_env())
Expand Down

0 comments on commit 92eda19

Please sign in to comment.