remote: Fix up incorrect logs (#42979)

Release Notes:

- N/A *or* Added/Fixed/Improved ...
This commit is contained in:
Lukas Wirth
2025-11-18 15:14:52 +00:00
committed by GitHub
parent 097024d46f
commit b4e4e0d3ac
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -489,7 +489,7 @@ impl SshRemoteConnection {
let ssh_shell = socket.shell().await;
log::info!("Remote shell discovered: {}", ssh_shell);
let ssh_platform = socket.platform(ShellKind::new(&ssh_shell, false)).await?;
log::info!("Remote platform discovered: {}", ssh_shell);
log::info!("Remote platform discovered: {:?}", ssh_platform);
let ssh_path_style = match ssh_platform.os {
"windows" => PathStyle::Windows,
_ => PathStyle::Posix,
+1 -1
View File
@@ -92,7 +92,7 @@ impl WslRemoteConnection {
.detect_platform()
.await
.context("failed detecting platform")?;
log::info!("Remote platform discovered: {}", this.shell);
log::info!("Remote platform discovered: {:?}", this.platform);
this.remote_binary_path = Some(
this.ensure_server_binary(&delegate, release_channel, version, commit, cx)
.await