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-client/src/client.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'azalea-client/src/client.rs') diff --git a/azalea-client/src/client.rs b/azalea-client/src/client.rs index 13d180fe..96e4eb1c 100644 --- a/azalea-client/src/client.rs +++ b/azalea-client/src/client.rs @@ -65,7 +65,6 @@ use bevy_ecs::{ }; use bevy_time::{Fixed, Time, TimePlugin}; use derive_more::Deref; -use log::{debug, error}; use parking_lot::{Mutex, RwLock}; use std::{ collections::HashMap, fmt::Debug, io, net::SocketAddr, ops::Deref, sync::Arc, time::Duration, @@ -75,6 +74,7 @@ use tokio::{ sync::{broadcast, mpsc}, time, }; +use tracing::{debug, error}; use uuid::Uuid; /// `Client` has the things that a user interacting with the library will want. @@ -518,7 +518,7 @@ impl Client { } if self.logged_in() { - log::debug!( + tracing::debug!( "Sending client information (already logged in): {:?}", client_information ); -- cgit v1.2.3