Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/cli/rustup_mode.rs
Original file line number Diff line number Diff line change
Expand Up @@ -790,7 +790,7 @@ async fn default_(
if let Some((toolchain, source)) = cfg.active_toolchain()?
&& !matches!(source, ActiveSource::Default)
{
info!(
warn!(
"note that the toolchain '{toolchain}' is currently in use ({})",
source.to_reason()
);
Expand Down
2 changes: 1 addition & 1 deletion tests/suite/cli_rustup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ async fn default_override() {
.with_stderr(snapbox::str![[r#"
info: using existing install for stable-[HOST_TRIPLE]
info: default toolchain set to stable-[HOST_TRIPLE]
info: note that the toolchain 'nightly-[HOST_TRIPLE]' is currently in use (directory override for '[..]')
warn: note that the toolchain 'nightly-[HOST_TRIPLE]' is currently in use (directory override for '[..]')
"#]])
.is_ok();
Expand Down
Loading