1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-19 18:57:59 +03:00

ssh: tidy up sshd logging in tests

This commit is contained in:
Wez Furlong 2021-12-15 23:19:27 -07:00
parent de13e17723
commit 6367e55117

View File

@ -304,8 +304,7 @@ impl Sshd {
let sshd_log_file = tmp.child("sshd.log");
let (child, port) = Self::try_spawn_next(sshd_config_file.path(), "/dev/stderr")
//sshd_log_file.path())
let (child, port) = Self::try_spawn_next(sshd_config_file.path(), sshd_log_file.path())
.expect("No open port available for sshd");
Ok(Self { child, port, tmp })