Skip to content

Commit 39f2eb6

Browse files
committed
add install stderr message in Toolchain install method
1 parent 8227356 commit 39f2eb6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/toolchains.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ impl Toolchain {
131131
client: &Client,
132132
dl_params: &DownloadParams,
133133
) -> Result<(), InstallError> {
134-
debug!("installing {}", self);
134+
eprintln!("installing {}", self);
135135
let tmpdir = TempDir::new_in(&dl_params.tmp_dir, &self.rustup_name())
136136
.map_err(InstallError::TempDir)?;
137137
let dest = dl_params.install_dir.join(self.rustup_name());

0 commit comments

Comments
 (0)