remove spurious eprintln!()

This commit is contained in:
Rob Walker 2018-11-16 10:21:58 -08:00 committed by GitHub
parent 03d206a7ca
commit 1576072edb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 2 deletions

View File

@ -170,8 +170,6 @@ pub fn find_available_port_in_range(range: (u16, u16)) -> io::Result<u16> {
let mut tries_left = end - start;
let mut rand_port = thread_rng().gen_range(start, end);
loop {
eprintln!("trying port {}", rand_port);
match TcpListener::bind(SocketAddr::new(
IpAddr::V4(Ipv4Addr::new(0, 0, 0, 0)),
rand_port,