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() } }