aboutsummaryrefslogtreecommitdiff
path: root/azalea-client/src/client.rs
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2023-11-18 00:58:47 -0600
committermat <git@matdoes.dev>2023-11-18 00:58:47 -0600
commit9633508a3a31a70c657329fdeca0050b7082959e (patch)
tree9973ed4e60a0bd2b77413a195b2a166854f04d43 /azalea-client/src/client.rs
parentb79ae025f08935044c621259d4e0c4bb72bbcd7f (diff)
downloadazalea-drasl-9633508a3a31a70c657329fdeca0050b7082959e.tar.xz
replace log with tracing
Diffstat (limited to 'azalea-client/src/client.rs')
-rw-r--r--azalea-client/src/client.rs4
1 files changed, 2 insertions, 2 deletions
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
);