We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17d80ab commit 2c4a0bbCopy full SHA for 2c4a0bb
.changes/force-colored-logs.md
@@ -0,0 +1,6 @@
1
+---
2
+"cli.rs": patch
3
+"cli.js": patch
4
5
+
6
+Force colored logs on mobile commands.
tooling/cli/src/mobile/mod.rs
@@ -129,6 +129,7 @@ pub struct CliOptions {
129
130
fn env_vars() -> HashMap<String, OsString> {
131
let mut vars = HashMap::new();
132
+ vars.insert("RUST_LOG_STYLE".into(), "always".into());
133
for (k, v) in std::env::vars_os() {
134
let k = k.to_string_lossy();
135
if (k.starts_with("TAURI") && k != "TAURI_PRIVATE_KEY" && k != "TAURI_KEY_PASSWORD")
0 commit comments