Skip to content

Commit

Permalink
remove leftover debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
scrayos committed Nov 21, 2024
1 parent 72a82e5 commit 56fddef
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/ping.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ use std::net::SocketAddr;
use std::time::Duration;
use thiserror::Error;
use tokio::net::TcpStream;
use tracing::info;

/// The (at the time of the last release) most recent, supported protocol version.
///
Expand Down Expand Up @@ -139,7 +138,6 @@ pub async fn get_server_status(
info.target.port,
);
let status_string = retrieve_status(&mut stream, &handshake_info).await?;
info!("{}", status_string.clone());
let status: ServerStatus =
from_str(&status_string).map_err(|err| PingError::InvalidJson(err, status_string))?;

Expand Down

0 comments on commit 56fddef

Please sign in to comment.