summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2024-02-23 16:34:24 -0500
committerGitHub <noreply@github.com>2024-02-23 16:34:24 -0500
commit33fa49a100c3a8f33bbf30dbad8eb3ad3e43bef6 (patch)
tree8134a9f1fbb10f178697292b5e149ec92c5c5b75
parent22cd8ebf1f3ecee6bb7646d0e77762b51cf4bd90 (diff)
chore: improve not implemented npm system info message (#22571)
-rw-r--r--cli/args/mod.rs8
1 files changed, 7 insertions, 1 deletions
diff --git a/cli/args/mod.rs b/cli/args/mod.rs
index 7bfb6bc0e..c5044fe65 100644
--- a/cli/args/mod.rs
+++ b/cli/args/mod.rs
@@ -860,7 +860,13 @@ impl CliOptions {
cpu: "x64".to_string(),
},
value => {
- log::warn!("Not implemented NPM system info for target '{value}'. Using current system default. This may impact NPM ");
+ log::warn!(
+ concat!(
+ "Not implemented npm system info for target '{}'. Using current ",
+ "system default. This may impact architecture specific dependencies."
+ ),
+ value,
+ );
NpmSystemInfo::default()
}
}