diff --git a/crates/remote/src/transport/ssh.rs b/crates/remote/src/transport/ssh.rs index 8fed12a4cb9d594160732cc94637f8b53692f9cf..6244045d1eba3a3f267fbdaf1cb906c58a3d48b2 100644 --- a/crates/remote/src/transport/ssh.rs +++ b/crates/remote/src/transport/ssh.rs @@ -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, diff --git a/crates/remote/src/transport/wsl.rs b/crates/remote/src/transport/wsl.rs index d9a7c7ea36f2c620bf0ba01d7735537b09883f08..c075e4fb1213512792191cb3b5ff5eefc423b339 100644 --- a/crates/remote/src/transport/wsl.rs +++ b/crates/remote/src/transport/wsl.rs @@ -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