chore: improve not implemented npm system info message (#22571)

This commit is contained in:
David Sherret 2024-02-23 16:34:24 -05:00 committed by GitHub
parent 22cd8ebf1f
commit 33fa49a100
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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