From 0713223e1204438f839566ce8cf954f0c9ff7f91 Mon Sep 17 00:00:00 2001 From: mat Date: Sat, 2 Dec 2023 16:07:09 -0600 Subject: [PATCH] fix compile error when trace logs are enabled --- azalea-protocol/src/read.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azalea-protocol/src/read.rs b/azalea-protocol/src/read.rs index 65e497c6..6b730d3f 100755 --- a/azalea-protocol/src/read.rs +++ b/azalea-protocol/src/read.rs @@ -357,7 +357,7 @@ where format!("{buf:?}") } }; - trace!("Reading packet with bytes: {buf_string}"); + tracing::trace!("Reading packet with bytes: {buf_string}"); }); Ok(Some(buf))