From 9633508a3a31a70c657329fdeca0050b7082959e Mon Sep 17 00:00:00 2001 From: mat Date: Sat, 18 Nov 2023 00:58:47 -0600 Subject: replace log with tracing --- azalea-protocol/examples/handshake_proxy.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'azalea-protocol/examples') diff --git a/azalea-protocol/examples/handshake_proxy.rs b/azalea-protocol/examples/handshake_proxy.rs index f7fb0f5c..4e9719b0 100644 --- a/azalea-protocol/examples/handshake_proxy.rs +++ b/azalea-protocol/examples/handshake_proxy.rs @@ -21,7 +21,6 @@ use azalea_protocol::{ read::ReadPacketError, }; use futures::FutureExt; -use log::{error, info, warn}; use once_cell::sync::Lazy; use std::error::Error; use tokio::{ @@ -29,6 +28,7 @@ use tokio::{ net::{TcpListener, TcpStream}, }; use tracing::Level; +use tracing::{error, info, warn}; const LISTEN_ADDR: &str = "127.0.0.1:25566"; const PROXY_ADDR: &str = "127.0.0.1:25565"; -- cgit v1.2.3