From 33fa49a100c3a8f33bbf30dbad8eb3ad3e43bef6 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Fri, 23 Feb 2024 16:34:24 -0500 Subject: [PATCH] chore: improve not implemented npm system info message (#22571) --- cli/args/mod.rs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/cli/args/mod.rs b/cli/args/mod.rs index 7bfb6bc0e8..c5044fe658 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() } }